diff --git a/src/views/car/CarGoodsAdminView.vue b/src/views/car/CarGoodsAdminView.vue index aa609db..883fab5 100644 --- a/src/views/car/CarGoodsAdminView.vue +++ b/src/views/car/CarGoodsAdminView.vue @@ -687,6 +687,23 @@ export default { { field: 'name.ar', title: '阿语名称', align: 'center', width: '20%' }, { field: 'name.tr', title: '土耳其语名称', align: 'center', width: '20%' }, { field: 'name.pt', title: '葡萄牙语名称', align: 'center', width: '20%' }, + { + field: "pic", + title: "座驾样式", + align: "center", + width: "5%", + formatter: function (val, row, index) { + if (val) { + return ( + "" + ); + } else { + return "-"; + } + }, + }, { field: 'partitionFlag', title: '地区', @@ -737,27 +754,9 @@ export default { } } }, - { - field: 'radishSale', - title: '萝卜购买', - align: 'center', - width: '5%', - formatter: function (val, row, index) { - if (val == true) { - return "是"; - } else if (val == false) { - return "否"; - } else { - return "-"; - } - } - }, { field: 'originalPrice', title: '原价(钻石)', align: 'center', width: '5%' }, { field: 'price', title: '购买价格(钻石)', align: 'center', width: '5%' }, { field: 'renewPrice', title: '续费价格(钻石)', align: 'center', width: '5%' }, - { field: 'radishOriginalPrice', title: '原价(萝卜)', align: 'center', width: '5%' }, - { field: 'radishPrice', title: '购买价格(萝卜)', align: 'center', width: '5%' }, - { field: 'radishRenewPrice', title: '续费价格(萝卜)', align: 'center', width: '5%' }, { field: 'enable', title: '启用状态', align: 'center', width: '15%', formatter: function (val, row, index) { if (val == 1) { diff --git a/src/views/headwear/HeadwearAdminView.vue b/src/views/headwear/HeadwearAdminView.vue index 13356cf..95faee8 100644 --- a/src/views/headwear/HeadwearAdminView.vue +++ b/src/views/headwear/HeadwearAdminView.vue @@ -601,6 +601,23 @@ export default { { field: 'name.en', title: '英语头饰名称', align: 'center', width: '5%' }, { field: 'name.tr', title: '土耳其头饰名称', align: 'center', width: '5%' }, { field: 'name.pt', title: '葡萄牙头饰名称', align: 'center', width: '5%' }, + { + field: "pic", + title: "头饰样式", + align: "center", + width: "5%", + formatter: function (val, row, index) { + if (val) { + return ( + "" + ); + } else { + return "-"; + } + }, + }, { field: 'partitionFlag', title: '地区', @@ -641,27 +658,9 @@ export default { } } }, - { - field: 'radishSale', - title: '萝卜购买', - align: 'center', - width: '5%', - formatter: function (val, row, index) { - if (val == true) { - return "是"; - } else if (val == false) { - return "否"; - } else { - return "-"; - } - } - }, { field: 'originalPrice', title: '原价(钻石)', align: 'center', width: '5%' }, { field: 'price', title: '购买价格(钻石)', align: 'center', width: '5%' }, { field: 'renewPrice', title: '续费价格(钻石)', align: 'center', width: '5%' }, - { field: 'radishOriginalPrice', title: '原价(萝卜)', align: 'center', width: '5%' }, - { field: 'radishPrice', title: '购买价格(萝卜)', align: 'center', width: '5%' }, - { field: 'radishRenewPrice', title: '续费价格(萝卜)', align: 'center', width: '5%' }, { field: 'days', title: '有效期', align: 'center', width: '5%' }, { field: 'seq', title: '排序', align: 'center', width: '5%' }, {