|
@ -70,7 +70,10 @@ |
|
|
v-for="(item,key) in tableTh" |
|
|
v-for="(item,key) in tableTh" |
|
|
:prop="item.prop" |
|
|
:prop="item.prop" |
|
|
:label="item.label" |
|
|
:label="item.label" |
|
|
:width="item.width"> |
|
|
:width="item.width" |
|
|
|
|
|
> |
|
|
|
|
|
<!-- <template slot-scope="scope"> |
|
|
|
|
|
</template> --> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
</el-table> |
|
|
</el-table> |
|
|
</div> |
|
|
</div> |
|
@ -91,7 +94,7 @@ export default { |
|
|
// 查询字段 |
|
|
// 查询字段 |
|
|
searchForm:{ |
|
|
searchForm:{ |
|
|
interfaceCalendar:null, |
|
|
interfaceCalendar:null, |
|
|
erpLocatioCode:null, |
|
|
erpLocatioCode:'', |
|
|
itemCode:null,//VW316C1A028A,UTT06PP5483 |
|
|
itemCode:null,//VW316C1A028A,UTT06PP5483 |
|
|
beginDate: '',//2021-10-01 |
|
|
beginDate: '',//2021-10-01 |
|
|
endDate: '',//2023-11-28T23:59:59 |
|
|
endDate: '',//2023-11-28T23:59:59 |
|
@ -110,7 +113,10 @@ export default { |
|
|
}, |
|
|
}, |
|
|
// table标头 |
|
|
// table标头 |
|
|
tableTh:[ |
|
|
tableTh:[ |
|
|
{label:'物料信息',prop:'itemCode',width:180}, |
|
|
{label:'物料代码',prop:'itemCode',width:180}, |
|
|
|
|
|
{label:'物料名称',prop:'itemName'}, |
|
|
|
|
|
{label:'物料描述',prop:'itemDesc1'}, |
|
|
|
|
|
{label:'物料配置',prop:'configuration'}, |
|
|
{label:'ERP储位',prop:'erpLocatioCode',width:80}, |
|
|
{label:'ERP储位',prop:'erpLocatioCode',width:80}, |
|
|
{label:'库位代码',prop:'locationCode',width:90}, |
|
|
{label:'库位代码',prop:'locationCode',width:90}, |
|
|
{label:'单号',prop:'number',width:170}, |
|
|
{label:'单号',prop:'number',width:170}, |
|
@ -258,7 +264,11 @@ export default { |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|
} |
|
|
} |
|
|
|
|
|
else{ |
|
|
|
|
|
_list.push(_item1) |
|
|
|
|
|
} |
|
|
}); |
|
|
}); |
|
|
|
|
|
console.log(_list) |
|
|
this.tableData = _list |
|
|
this.tableData = _list |
|
|
}, |
|
|
}, |
|
|
// 获取表格数据 |
|
|
// 获取表格数据 |
|
|