|
@@ -142,7 +142,9 @@ export default {
|
|
|
{ title: '最大库容', dataIndex: 'maxQty', width: '15%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } }
|
|
|
]
|
|
|
// 内置模板没有操作这一列
|
|
|
- ret.push({ title: '操作', scopedSlots: { customRender: 'action' }, width: '15%', align: 'center' })
|
|
|
+ if (this.basicInfoData && this.basicInfoData.sysFlag == 0) {
|
|
|
+ ret.push({ title: '操作', scopedSlots: { customRender: 'action' }, width: '15%', align: 'center' })
|
|
|
+ }
|
|
|
return ret
|
|
|
}
|
|
|
},
|