供需平衡表
This commit is contained in:
parent
024e8a676d
commit
c6dcba9b2e
|
|
@ -122,7 +122,7 @@
|
|||
</el-table-column>
|
||||
<el-table-column
|
||||
v-for="(column, index) in tableColumns"
|
||||
:show-overflow-tooltip="!column.showTooltip"
|
||||
:show-overflow-tooltip="!column.unShowTooltip"
|
||||
:key="index"
|
||||
:label="column.label"
|
||||
:prop="column.prop"
|
||||
|
|
@ -287,14 +287,14 @@ export default {
|
|||
// 总条数
|
||||
total: 0,
|
||||
tableColumns: [
|
||||
{ label: '工程名称', prop: 'proName', showTooltip: false },
|
||||
{ label: '物资名称', prop: 'typeName' },
|
||||
{ label: '规格型号', prop: 'typeModelName' },
|
||||
{ label: '计量单位', prop: 'unit' },
|
||||
{ label: '业务需求数量', prop: 'businessNum' },
|
||||
{ label: '实际供应数量', prop: 'supplyNum' },
|
||||
{ label: '在库数量', prop: 'storeNum' },
|
||||
{ label: '在用数量', prop: 'useNum' }
|
||||
{ label: '工程名称', prop: 'proName', unShowTooltip: true },
|
||||
{ label: '物资名称', prop: 'typeName', width: 180 },
|
||||
{ label: '规格型号', prop: 'typeModelName', width: 160 },
|
||||
{ label: '计量单位', prop: 'unit', width: 100 },
|
||||
{ label: '业务需求数量', prop: 'businessNum',width: 130 },
|
||||
{ label: '实际供应数量', prop: 'supplyNum',width: 130 },
|
||||
{ label: '在库数量', prop: 'storeNum',width: 130 },
|
||||
{ label: '在用数量', prop: 'useNum', width: 130 }
|
||||
],
|
||||
// 主表格数据
|
||||
tableList: [],
|
||||
|
|
|
|||
Loading…
Reference in New Issue