Commit 2b3b33a4 authored by 黄卓's avatar 黄卓

收费模式

parent 340d5131
......@@ -25,6 +25,7 @@
</el-select>
</el-descriptions-item>
<el-descriptions-item label="是否备案">{{ isBeian }}</el-descriptions-item>
<el-descriptions-item label="收费模式">{{ feeType }}</el-descriptions-item>
<el-descriptions-item label="填单参数">
箱数:{{ warehousing.num }}<br>
体积:{{ warehousing.volume }}<br>
......@@ -317,6 +318,18 @@ export default {
isBeian(){
return ['无备案', '有备案', '中性'][this.warehousing.brandType]
},
/**
* 收费模式
* @returns {string}
*/
feeType(){
// 无牌价0,有牌价1,中性品牌价2
const feeType = this.form.feeType
if (feeType >= 0 && feeType < 3) {
return ['无牌价', '有牌价', '中性品牌价'][feeType]
}
return ''
},
brand(){
if (!!this.form.brand){
const brand = this.brandList.find(e => e.id === this.form.brand)
......
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