Commit 1799826b authored by dragondean@qq.com's avatar dragondean@qq.com

还有价格文案和异常修复

parent bf704adf
......@@ -9,6 +9,7 @@ export default {
components: {Template, Inputor, Selector},
props:{
index: Number,
type: String,
priceName: String,
fieldPrefix: String,
unitList:{
......@@ -154,7 +155,7 @@ export default {
<template>
<div>
<div class="bold text-lg">{{$t('空运{type}设置', {type: priceName})}}</div>
<div class="bold text-lg">{{$t('{type}{priceName}价格设置', {type, priceName})}}</div>
<div style="font-size:14px; margin:10px 0">
{{$t('第{index}阶梯定价方案', {index: index+1})}}
<template v-if="showAdd">
......
......@@ -112,6 +112,7 @@
:currency-list="currencyList"
:unit-list="unitList"
field-prefix="all"
:type="$t('海运')"
:price-name="$t('全包价')"
:show-add="index === form.fullPriceStepList.length -1 && !readonly"
:value="item"
......@@ -131,6 +132,7 @@
:currency-list="currencyList"
:unit-list="unitList"
field-prefix="transport"
:type="$t('海运')"
:price-name="$t('运费')"
:show-add="index === form.freightPriceStepList.length -1 && !readonly"
:value="item"
......@@ -149,6 +151,7 @@
:currency-list="currencyList"
:unit-list="unitList"
field-prefix="clearance"
:type="$t('海运')"
:price-name="$t('清关费')"
:show-add="index === form.clearancePriceStepList.length -1 && !readonly"
:value="item"
......
......@@ -99,6 +99,7 @@
:currency-list="currencyList"
:unit-list="unitList"
field-prefix="all"
:type="$t('空运')"
:price-name="$t('全包价')"
:show-add="index === form.fullPriceStepList.length -1 && !readonly"
:value="item"
......@@ -118,6 +119,7 @@
:currency-list="currencyList"
:unit-list="unitList"
field-prefix="transport"
:type="$t('空运')"
:price-name="$t('运费')"
:show-add="index === form.freightPriceStepList.length -1 && !readonly"
:value="item"
......@@ -136,6 +138,7 @@
:currency-list="currencyList"
:unit-list="unitList"
field-prefix="clearance"
:type="$t('空运')"
:price-name="$t('清关费')"
:show-add="index === form.clearancePriceStepList.length -1 && !readonly"
:value="item"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment