|
@@ -167,7 +167,7 @@ export default {
|
|
|
{
|
|
|
slots: { title: 'customTitle' },
|
|
|
children: [
|
|
|
- { title: '铺货数量', dataIndex: 'totalShelfMaxQty', width: '8%', align: 'center', customRender: function (text) { return text && toThousands(text, 2) || '--' }, sorter: true },
|
|
|
+ { title: '铺货数量', dataIndex: 'totalShelfMaxQty', width: '8%', align: 'center', customRender: function (text) { return (text || text == 0) ? text : '--' }, sorter: true },
|
|
|
{ title: '铺货金额', dataIndex: 'totalShelfMaxCost', width: '8%', align: 'center', customRender: function (text) { return text && toThousands(text, 2) || '--' }, sorter: true }
|
|
|
]
|
|
|
},
|