|
|
|
@ -18,7 +18,26 @@ export default function (_height=0) {
|
|
|
|
|
showOverflow: true,
|
|
|
|
|
scrollY:{enable:true},
|
|
|
|
|
data:[],
|
|
|
|
|
ycldw:[]
|
|
|
|
|
ycldw:[],
|
|
|
|
|
tlt:[
|
|
|
|
|
{"bmsm": "2跨超长超宽曲板", "bmlb": "QGKW", "bm": "10"},
|
|
|
|
|
{"bmsm": "2跨T型材腹板", "bmlb": "QGKW", "bm": "11"},
|
|
|
|
|
{"bmsm": "2跨激光切割板", "bmlb": "QGKW", "bm": "12"},
|
|
|
|
|
{"bmsm": "3跨曲板", "bmlb": "QGKW", "bm": "13"},
|
|
|
|
|
{"bmsm": "3跨厚板", "bmlb": "QGKW", "bm": "14"},
|
|
|
|
|
{"bmsm": "4跨普通板", "bmlb": "QGKW", "bm": "15"},
|
|
|
|
|
{"bmsm": "7跨型板", "bmlb": "QGKW", "bm": "16"},
|
|
|
|
|
{"bmsm": "光电", "bmlb": "QGKW", "bm": "17"},
|
|
|
|
|
{"bmsm": "2跨T型材面板", "bmlb": "QGKW", "bm": "5"},
|
|
|
|
|
{"bmsm": "3跨平铁", "bmlb": "QGKW", "bm": "6"},
|
|
|
|
|
{"bmsm": "1跨平直大板", "bmlb": "QGKW", "bm": "7"},
|
|
|
|
|
{"bmsm": "1跨进线板", "bmlb": "QGKW", "bm": "8"},
|
|
|
|
|
{"bmsm": "2跨超长超宽板", "bmlb": "QGKW", "bm": "9"}
|
|
|
|
|
],
|
|
|
|
|
zl:[
|
|
|
|
|
{"name": "小组立", "bm": "1010"},
|
|
|
|
|
{"name": "中大组立", "bm": "1110"},
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
const ext={}
|
|
|
|
|
const setExt=function (key,value){
|
|
|
|
@ -48,19 +67,36 @@ export default function (_height=0) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const kwFormat=function ({cellValue}){
|
|
|
|
|
for (const item of options.tlt) {
|
|
|
|
|
if (cellValue===item.bm){
|
|
|
|
|
return item.bmsm
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const zlFormat=function ({cellValue}){
|
|
|
|
|
for (const item of options.zl) {
|
|
|
|
|
if (cellValue===item.bm){
|
|
|
|
|
return item.name
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const columns = [
|
|
|
|
|
{ type: 'checkbox', width: 40 },
|
|
|
|
|
{ type: 'seq',title:'序号', width: 60 },
|
|
|
|
|
{ type: 'seq',title:'序号', width: 50 },
|
|
|
|
|
{field: 'dwId', title: '垛位', width: 100,formatter: dwFormat},
|
|
|
|
|
{field: 'ceng', title: '层数', width: 60},
|
|
|
|
|
{field: 'czbh', title: '船号'},
|
|
|
|
|
{field: 'pl', title: '批量'},
|
|
|
|
|
{field: 'fd', title: '分段',visible:false},
|
|
|
|
|
{field: 'tlth', title: '套料图号',visible:false},
|
|
|
|
|
{field: 'wpgg', title: '物品规格', },
|
|
|
|
|
{field: 'wlh', title: '物料号', },
|
|
|
|
|
{field: 'nm', title: '内码',visible:false },
|
|
|
|
|
{field: '', title: '备注',visible:false },
|
|
|
|
|
{field: 'ceng', title: '层数', width: 50},
|
|
|
|
|
{field: 'czbh', title: '船号', width: 80},
|
|
|
|
|
{field: 'pl', title: '批量', width: 50},
|
|
|
|
|
{field: 'fd', title: '分段',width: 50,visible:false},
|
|
|
|
|
{field: 'tlth', title: '套料图号',width: 120,visible:false},
|
|
|
|
|
{field: 'wpgg', title: '物品规格', width: 120,},
|
|
|
|
|
{field: 'wlh', title: '物料号', width: 130,},
|
|
|
|
|
{field: 'kw', title: '垮位',width: 130,formatter: kwFormat},
|
|
|
|
|
{field: 'zl', title: '组立', width: 70,formatter: zlFormat},
|
|
|
|
|
{field: 'nbsbm', title: '入库批号',minWidth: 100,},
|
|
|
|
|
{field: '', title: '备注',width: 50,visible:false },
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|