Commit 4a06ee08 authored by 黄卓's avatar 黄卓

入仓 备案 收费模式

parent d07564ba
......@@ -207,7 +207,8 @@ export default {
"prodTitleEn": "",
"prodTitleZh": "",
"prodType": 0,
"type": 0
"type": 0,
feeType: 0
},
// orderItem: {},
......@@ -312,11 +313,18 @@ export default {
},
computed: {
brandObject(){
return this.brandList.find(e => e.id === this.form.brand) || ''
},
tableData() {
return [...this.warehousing.orderWarehouseInBackItemDoList, ...this.form.orderWarehouseInItemDoList]
},
isBeian(){
return ['无备案', '有备案', '中性'][this.warehousing.brandType]
if (this.brandObject.filing){
return ['无备案', '有备案', '中性'][this.brandObject.filing]
} else {
return ''
}
},
/**
* 收费模式
......@@ -324,7 +332,7 @@ export default {
*/
feeType(){
// 无牌价0,有牌价1,中性品牌价2
const feeType = this.form.feeType
const feeType = parseInt(this.form.feeType)
if (feeType >= 0 && feeType < 3) {
return ['无牌价', '有牌价', '中性品牌价'][feeType]
}
......
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