fix: 增加订单备注
This commit is contained in:
parent
d003e5da70
commit
907e9d35a7
@ -640,6 +640,7 @@ export default {
|
|||||||
},
|
},
|
||||||
modal: false, //弹出调整价格框
|
modal: false, //弹出调整价格框
|
||||||
printModal: false,//弹出打印发货单
|
printModal: false,//弹出打印发货单
|
||||||
|
sellerRemarkModal: false,//弹出编辑订单备注
|
||||||
//调整价格表单
|
//调整价格表单
|
||||||
modifyPriceForm: {
|
modifyPriceForm: {
|
||||||
orderPrice: 0,
|
orderPrice: 0,
|
||||||
|
@ -143,6 +143,13 @@ export default {
|
|||||||
key: "sn",
|
key: "sn",
|
||||||
minWidth: 200,
|
minWidth: 200,
|
||||||
tooltip: true,
|
tooltip: true,
|
||||||
|
render: (h, params) => {
|
||||||
|
if (params.row.sellerRemark) {
|
||||||
|
return h("div", {}, params.row.sellerRemark + " ("+params.row.sn+")");
|
||||||
|
} else {
|
||||||
|
return h("div", {}, params.row.sn);
|
||||||
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "订单来源",
|
title: "订单来源",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user