|
@@ -110,9 +110,9 @@ export default {
|
|
|
nowUnColumns: [
|
|
|
{ title: '序号', dataIndex: 'no', width: '6%', align: 'center' },
|
|
|
{ title: '产品编码', dataIndex: 'productCode', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '省级价', dataIndex: 'provincePrice', width: '12%', align: 'center', customRender: text => ((text || text == 0) ? _this.toThousands(text) : '--') },
|
|
|
- { title: '市级价', dataIndex: 'cityPrice', width: '12%', align: 'center', customRender: text => ((text || text == 0) ? _this.toThousands(text) : '--') },
|
|
|
- { title: '特约价', dataIndex: 'specialPrice', width: '12%', align: 'center', customRender: text => ((text || text == 0) ? _this.toThousands(text) : '--') },
|
|
|
+ { title: '省级价', dataIndex: 'provincePrice', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '市级价', dataIndex: 'cityPrice', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
+ { title: '特约价', dataIndex: 'specialPrice', width: '12%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '退货单价说明', dataIndex: 'priceRemark', width: '30%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '错误说明', scopedSlots: { customRender: 'errorMsg' }, width: '13%', align: 'center' }
|
|
|
],
|