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];