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

入仓 备案 收费模式

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