|
@@ -197,10 +197,7 @@ export default {
|
|
|
arr.splice(idx, 0, { title: '售价', dataIndex: 'productPrice', width: '100px', align: 'right', scopedSlots: { customRender: 'productPrice' } })
|
|
|
idx = idx + 1
|
|
|
}
|
|
|
- // 促销品没有起订量
|
|
|
- if(this.promoProductClz != 'GIFT'){
|
|
|
- arr.splice(idx+1, 0,{ title: '起订量', dataIndex: 'unitQtyV', width: '60px', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } })
|
|
|
- }
|
|
|
+ arr.splice(idx+1, 0,{ title: '起订量', dataIndex: 'unitQtyV', width: '60px', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } })
|
|
|
return arr
|
|
|
}
|
|
|
},
|