From a918d3676da9024c668c02e4a328d67285c7eac3 Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期五, 26 九月 2025 08:59:20 +0800
Subject: [PATCH] 领用单丝,字段回显实际生产长度和重量
---
src/pages/production/detail/wireDetail.vue | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/pages/production/detail/wireDetail.vue b/src/pages/production/detail/wireDetail.vue
index 19abcd5..305e6e0 100644
--- a/src/pages/production/detail/wireDetail.vue
+++ b/src/pages/production/detail/wireDetail.vue
@@ -15,7 +15,7 @@
<wd-grid-item
icon="computer"
link-type="navigateTo"
- :url="`/pages/production/wire/report/wire?id=${paramsId}`"
+ :url="`/pages/production/wire/report/wire?id=${paramsId}&model=${cardData.model}&oneLength=${cardData.oneLength}`"
text="鎶ュ伐"
/>
<!-- <wd-grid-item
@@ -30,12 +30,12 @@
:url="`/pages/production/wire/backman/index?id=${paramsId}`"
text="鏉傚伐"
/>
- <wd-grid-item
+ <!-- <wd-grid-item
icon="wallet"
link-type="navigateTo"
url="/pages/production/wire/receive/index"
text="鏉愭枡棰嗙敤"
- />
+ /> -->
</wd-grid>
</view>
</view>
@@ -53,6 +53,7 @@
totalAmount: undefined,
amount: undefined,
unAmount: undefined,
+ oneLength: undefined,
});
const getDetailData = async (id: string) => {
@@ -64,6 +65,7 @@
cardData.totalAmount = data.totalAmount;
cardData.amount = data.amount;
cardData.unAmount = data.unAmount;
+ cardData.oneLength = data.oneLength;
};
onLoad((options: any) => {
--
Gitblit v1.9.3