From 5fef4fcdcdcce5eeca72b28e2a65cc6633bcfaf8 Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Mon, 24 Feb 2025 17:51:51 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=B7=E6=A0=BC=E6=A8=A1=E6=9D=BF=E9=85=8D?= =?UTF-8?q?=E8=BD=BD=EF=BC=8C=E5=B9=B2=E7=BA=BF=EF=BC=8C=E6=8F=90=E8=B4=A7?= =?UTF-8?q?=E6=8C=89=E4=BB=B6=20=E6=8C=89=E9=87=8D=E9=87=8F=E7=9A=84?= =?UTF-8?q?=E6=A0=87=E9=A2=98=E9=9C=80=E8=A6=81=E4=BC=98=E5=8C=96=EF=BC=88?= =?UTF-8?q?=E5=85=83/m3=20=E5=85=83/kg=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Pricesystem/Price/PriceTrunkLine.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/Pricesystem/Price/PriceTrunkLine.vue b/src/views/Pricesystem/Price/PriceTrunkLine.vue index 9f5355c4..453847db 100644 --- a/src/views/Pricesystem/Price/PriceTrunkLine.vue +++ b/src/views/Pricesystem/Price/PriceTrunkLine.vue @@ -470,7 +470,7 @@ 序号 产品品类 - 按件计费(元/件) + {{ value.type }} @@ -776,6 +776,9 @@ const handleTrunkLinePricingType = response => { const _itemObj = { title: value.dictValue + '计费品类', code: value.dictKey, + type: value.dictValue === '按件' ? value.dictValue+'(元/件)' : + value.dictValue === '按方' ? value.dictValue+'(元/m³)' : + value.dictValue === '按重量' ? value.dictValue+'(元/kg)' : '', categories: [ { title: '', @@ -1157,7 +1160,7 @@ const initAssignmentForm = (data, isLine = true) => { } const _billTemplateDetailArr = []; - + // 品类赋值 for (let i = 0; i < details.form.billTemplateDetail.length; i++) { const value = details.form.billTemplateDetail[i];