From 03fed26795881c1523587e8f74678391ab4346b4 Mon Sep 17 00:00:00 2001
From: yyb <995253665@qq.com>
Date: 星期四, 23 十月 2025 15:45:47 +0800
Subject: [PATCH] 车间订单列表查询参数变更
---
pages/product/report/orderList.vue | 13 +++++--------
1 files changed, 5 insertions(+), 8 deletions(-)
diff --git a/pages/product/report/orderList.vue b/pages/product/report/orderList.vue
index 3f32950..ca54deb 100644
--- a/pages/product/report/orderList.vue
+++ b/pages/product/report/orderList.vue
@@ -5,7 +5,7 @@
back-icon-color="#000" />
<view class="finishProductIn-locno-search">
<u-search v-model="keywords" shape="square" bg-color="rgba(250,252,255,0.36)" :show-action="false"
- placeholder="璇疯緭鍏ヨ溅闂磋鍗曞彿" @clear="search" @custom="search" @search="search" @input="search">
+ placeholder="璇疯緭鍏ヨ鍗曞彿" @clear="search" @custom="search" @search="search" @input="search">
</u-search>
</view>
<view class="wrap">
@@ -23,7 +23,7 @@
<view class="_label-name">璁㈠崟鍙凤細</view>
</view>
<view class="_content">
- {{ item.moNo }}
+ {{ item.ifsOrderNo }}
</view>
</view>
<view class="row-list">
@@ -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;
@@ -146,10 +144,9 @@
.getWorkshopOrder({
current: this.pageNum,
size: this.pageSize,
- moNo: value,
+ ifsOrderNo: 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