From af4f45eaa2703ecf991bd10f07f6df179f2677d9 Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期三, 19 十一月 2025 10:04:45 +0800
Subject: [PATCH] Merge branch 'refs/heads/yyb'
---
src/pages/production/detail/wireDetail.vue | 11 ++++++++---
1 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/src/pages/production/detail/wireDetail.vue b/src/pages/production/detail/wireDetail.vue
index 19abcd5..29f6caf 100644
--- a/src/pages/production/detail/wireDetail.vue
+++ b/src/pages/production/detail/wireDetail.vue
@@ -5,6 +5,7 @@
:map="{
deviceModel: 'deviceModel',
model: 'model',
+ systemNo: 'systemNo',
totalAmount: 'totalAmount',
amount: 'amount',
unAmount: 'unAmount',
@@ -15,7 +16,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 +31,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>
@@ -50,9 +51,11 @@
const cardData = reactive({
deviceModel: undefined,
model: undefined,
+ systemNo: undefined,
totalAmount: undefined,
amount: undefined,
unAmount: undefined,
+ oneLength: undefined,
});
const getDetailData = async (id: string) => {
@@ -61,9 +64,11 @@
});
cardData.deviceModel = data.deviceModel;
cardData.model = data.model;
+ cardData.systemNo = data.systemNo;
cardData.totalAmount = data.totalAmount;
cardData.amount = data.amount;
cardData.unAmount = data.unAmount;
+ cardData.oneLength = data.oneLength;
};
onLoad((options: any) => {
--
Gitblit v1.9.3