From 3b2b145c6fbcd1756e34af493a0f42053db39f66 Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Tue, 14 May 2024 11:23:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=8F=90=E8=B4=A7=E5=8D=95?= =?UTF-8?q?=E7=BF=BB=E9=A1=B5=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Pricesystem/Price/PriceWarehousing.vue | 14 +- .../aftersales/aftersalesWorkOrderInfo.vue | 4 +- .../aftersales/aftersalesWorkOrderend.vue | 508 ++++++++++++------ .../distributionDeliveryListdis.vue | 2 +- .../inventory/distrilbutionBillLading.vue | 39 +- 5 files changed, 389 insertions(+), 178 deletions(-) diff --git a/src/views/Pricesystem/Price/PriceWarehousing.vue b/src/views/Pricesystem/Price/PriceWarehousing.vue index fdd9f597..da03da1a 100644 --- a/src/views/Pricesystem/Price/PriceWarehousing.vue +++ b/src/views/Pricesystem/Price/PriceWarehousing.vue @@ -252,12 +252,19 @@ const form = ref({ disabled: true, }, { - label: '60天外', + label: '60天-90天', prop: 'beyondSixtyPrice', type: 'number', width: 'auto', disabled: true, }, + { + label: '90天外', + prop: 'beyondNinetyPrice', + type: 'number', + width: 'auto', + disabled: true, + }, { label: '上限', prop: 'maximumPrice', @@ -366,6 +373,7 @@ const onLoad = async () => { betweenThirtySixtyPrice: 0, beyondSixtyPrice: 0, maximumPrice: 0, + beyondNinetyPrice:0, options: [{ label: categoryName, value: categoryId }], }; } @@ -376,6 +384,7 @@ const onLoad = async () => { betweenThirtySixtyPrice: 0, beyondSixtyPrice: 0, maximumPrice: 0, + beyondNinetyPrice:0, }; } @@ -498,6 +507,7 @@ const onLoad = async () => { data.beyondSixtyPrice = res.beyondSixtyPrice || 0; data.maximumPrice = res.maximumPrice || 0; data.withinThirtyPrice = res.withinThirtyPrice || 0; + data.beyondNinetyPrice=res.beyondNinetyPrice || 0 } }); } @@ -602,6 +612,7 @@ const handleSubmit = () => { categoryId: res.categoryId, // 品类id maximumPrice: res.maximumPrice, // 上限价格 withinThirtyPrice: res.withinThirtyPrice, // 30天内 + beyondNinetyPrice:res.beyondNinetyPrice,//90天外 }); }); } else { @@ -611,6 +622,7 @@ const handleSubmit = () => { beyondSixtyPrice: res.beyondSixtyPrice, // 60天外 maximumPrice: res.maximumPrice, // 上限价格 withinThirtyPrice: res.withinThirtyPrice, // 30天内 + beyondNinetyPrice:res.beyondNinetyPrice,//90天外 }); }); } diff --git a/src/views/aftersales/aftersalesWorkOrderInfo.vue b/src/views/aftersales/aftersalesWorkOrderInfo.vue index 597d4e22..d6811091 100644 --- a/src/views/aftersales/aftersalesWorkOrderInfo.vue +++ b/src/views/aftersales/aftersalesWorkOrderInfo.vue @@ -214,7 +214,7 @@ label="调查经过" v-if="displaySettings.investigationPocess" > - + @@ -1596,7 +1596,7 @@ const ResultDetermination = () => { width: 100%; :deep(.el-form-item) { flex-direction: column; - width: 10%; + width: 14%; margin-right: 4px; .el-form-item__label { margin: 0; diff --git a/src/views/aftersales/aftersalesWorkOrderend.vue b/src/views/aftersales/aftersalesWorkOrderend.vue index 5b20ea6b..e83558c8 100644 --- a/src/views/aftersales/aftersalesWorkOrderend.vue +++ b/src/views/aftersales/aftersalesWorkOrderend.vue @@ -1,64 +1,212 @@