liuyanpeng пре 3 година
родитељ
комит
199e2706b4
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      src/components/customer/CommonTable.vue

+ 2 - 2
src/components/customer/CommonTable.vue

@@ -63,8 +63,8 @@ const pagination = reactive({
 const showSizeChange = (current, pageSize) => {
   setTimeout(() => {
     pagination.current = 1;
-    // emit('getPage', pagination.current, pageSize);
-  },500);
+    emit('getPage', pagination.current, pageSize);
+  });
   pagination.pageSize = pageSize;
 };