From 33ad9bff8eb0e6be50efbaab76ae71c76b6e218b Mon Sep 17 00:00:00 2001
From: yyb <995253665@qq.com>
Date: 星期四, 21 八月 2025 14:17:33 +0800
Subject: [PATCH] PDA报工页面投料产量和汇报产量放到主页面,调整逻辑,接口联调,取消报工页面逻辑梳理,接口联调

---
 pages/product/report/orderList.vue |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/pages/product/report/orderList.vue b/pages/product/report/orderList.vue
index 3f32950..23d574a 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) {
@@ -299,7 +296,7 @@
 
 					._label-name {
 						margin-left: 11rpx;
-						font-size: 26rpx;
+						font-size: small;
 						font-weight: 500;
 						color: #666666;
 					}
@@ -309,7 +306,7 @@
 					flex: 1.5;
 					text-align: right;
 					color: #909399;
-					font-size: 24rpx;
+					font-size: small;
 				}
 
 				.row-list .s1 {

--
Gitblit v1.9.3