1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- export default [
- {
- type: 'expand',
- _slot_: 'expand',
- label: ''
- },
- {
- prop: 'good_code',
- label: '商品编码',
- width: '185',
- _slot_: 'good_code'
- },
- // {
- // prop: "type_code",
- // label: "属性编码",
- // width: "150",
- // },
- {
- prop: 'good_name',
- label: '商品名称',
- 'min-width': '150'
- },
- {
- prop: 'specinfo',
- label: '规格',
- 'min-width': '150',
- _slot_: 'specinfo'
- },
- {
- prop: 'sort_f',
- label: '分类',
- width: '155'
- },
- {
- prop: 'brand_name',
- label: '品牌',
- width: '85'
- },
- {
- prop: 'unit',
- label: '单位',
- width: '50'
- },
- {
- prop: 'total_stock',
- label: '当前库存',
- width: '80'
- },
- {
- prop: 'wait_in_stock',
- label: '待入库',
- width: '80'
- },
- {
- prop: 'wait_out_stock',
- label: '待出库',
- width: '80'
- },
- {
- prop: 'usable_stock',
- label: '可用库存',
- width: '80'
- },
- {
- prop: 'intra_stock',
- label: '在途库存',
- width: '80'
- }
- ]
|