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 @@