Kaynağa Gözat

🐞 fix([drp-采购员上级采购经理匹配]): 汇总采购员审核匹配列表界面分页不起作用

总采购员审核匹配列表界面大于10条数据没显示,切换分页展示,显示其他页也看不到数据

20240508470
002390 1 yıl önce
ebeveyn
işleme
9400c42b65
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      src/views/purchase/pu-match/index.vue

+ 1 - 1
src/views/purchase/pu-match/index.vue

@@ -37,7 +37,7 @@ export default {
     async useQuery(params, page) {
       try {
         this.loading = true;
-        let { code, rows, total } = await LIST({ ...params, ...page });
+        let { code, rows, total } = await LIST(params, page);
         if (code === 200) {
           this.tableData = rows;
           this.page.total = total;