Browse Source

价格模板配载,干线,提货按件 按重量的标题需要优化(元/m3 元/kg)

dev
马远东 1 month ago
parent
commit
5fef4fcdcd
  1. 5
      src/views/Pricesystem/Price/PriceTrunkLine.vue

5
src/views/Pricesystem/Price/PriceTrunkLine.vue

@ -470,7 +470,7 @@
<tr>
<th class="index">序号</th>
<th width="200px">产品品类</th>
<th width="200px">按件计费(/)</th>
<th width="200px">{{ value.type }}</th>
</tr>
</thead>
@ -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: '',

Loading…
Cancel
Save