|
@@ -161,6 +161,33 @@ export default {
|
|
|
checked: true,
|
|
|
dataIndex: 'maxStock'
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '等级',
|
|
|
+ checked: true,
|
|
|
+ width: '150px',
|
|
|
+ dataIndex: 'level',
|
|
|
+ customRender: (text, record, index) => {
|
|
|
+ return this.BaseTool.Object.getField(this.levelMap, text)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '生产商',
|
|
|
+ checked: true,
|
|
|
+ width: '150px',
|
|
|
+ dataIndex: 'producerId',
|
|
|
+ customRender: (text, record, index) => {
|
|
|
+ return record.producerName
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '用途',
|
|
|
+ checked: true,
|
|
|
+ width: '150px',
|
|
|
+ dataIndex: 'yt',
|
|
|
+ customRender: (text, record, index) => {
|
|
|
+ return this.BaseTool.Object.getField(this.ytMap, text)
|
|
|
+ }
|
|
|
+ },
|
|
|
{
|
|
|
title: '实际库存',
|
|
|
checked: true,
|