fix: 增加订单备注

This commit is contained in:
lele0521 2024-05-15 17:56:06 +08:00
parent d003e5da70
commit 907e9d35a7
2 changed files with 8 additions and 0 deletions

View File

@ -640,6 +640,7 @@ export default {
},
modal: false, //
printModal: false,//
sellerRemarkModal: false,//
//
modifyPriceForm: {
orderPrice: 0,

View File

@ -143,6 +143,13 @@ export default {
key: "sn",
minWidth: 200,
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: "订单来源",