yyb
2025-06-19 9e25f6fe8d22a6d33f49cc02f28cd03468555360
pages/product/report/orderList.vue
@@ -127,7 +127,6 @@
                  size: this.pageSize
               })
               .then((res) => {
                  console.log("res", res);
                  this.list = res.data.records;
                  this.total = res.data.total;
                  if (this.pageSize >= this.total) {
@@ -138,7 +137,6 @@
               });
         },
         search(value) {
            console.log("111", value);
            if (value) {
               this.list = [];
               this.pageSize = 10;
@@ -149,7 +147,6 @@
                     moNo: value,
                  })
                  .then((res) => {
                     console.log("res", res);
                     this.list = res.data.records;
                     this.total = res.data.total;
                     if (this.pageSize >= this.total) {