From 3a75daf63f5b64af3388424c3de82662c20aa383 Mon Sep 17 00:00:00 2001
From: yyb <995253665@qq.com>
Date: 星期五, 18 七月 2025 13:49:01 +0800
Subject: [PATCH] 添加了打印超时定时器清除逻辑,确保打印成功后清除超时回调
---
pages/product/report/orderList.vue | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/pages/product/report/orderList.vue b/pages/product/report/orderList.vue
index 3f32950..3970b87 100644
--- a/pages/product/report/orderList.vue
+++ b/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) {
--
Gitblit v1.9.3