This commit is contained in:
朱文强 2024-01-11 13:17:02 +08:00
parent 1cc0f4671e
commit 97b8ddd3b5
3 changed files with 22 additions and 10 deletions

View File

@ -93,6 +93,10 @@ const mainTaskType = [
name: '移库', name: '移库',
id: 3, id: 3,
}, },
{
name: '出库带移库',
id: 4,
},
]; ];
const mainTaskState = [ const mainTaskState = [
{ {
@ -115,10 +119,18 @@ const mainTaskState = [
name: '堆垛机运行中', name: '堆垛机运行中',
id: 4, id: 4,
}, },
// { {
// name: '', name: '完成',
// id: 5, id: 5,
// }, },
{
name: '已发送传输线',
id: 6,
},
{
name: '传输线运行中',
id: 7,
},
]; ];
const agvArr = [ const agvArr = [
{ {

View File

@ -190,8 +190,8 @@ export default {
}, },
{ {
type: 'input', type: 'input',
label: '库位编码', label: '托盘编码',
placeholder: '库位编码', placeholder: '托盘编码',
param: 'code', param: 'code',
}, },
{ {
@ -244,7 +244,7 @@ export default {
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 10;
this.listQuery.warehouseStorehouseName = val.name; this.listQuery.warehouseStorehouseName = val.name;
this.listQuery.warehouseStorehouseCode = val.code; this.listQuery.trayCode = val.code;
this.listQuery.goodName = val.pname; this.listQuery.goodName = val.pname;
this.listQuery.goodCode = val.pcode; this.listQuery.goodCode = val.pcode;
this.listQuery.process = val.processId; this.listQuery.process = val.processId;

View File

@ -191,8 +191,8 @@ export default {
}, },
{ {
type: 'input', type: 'input',
label: '库位编码', label: '托盘编码',
placeholder: '库位编码', placeholder: '托盘编码',
param: 'code', param: 'code',
}, },
{ {
@ -247,7 +247,7 @@ export default {
this.listQuery.pageNo = 1; this.listQuery.pageNo = 1;
this.listQuery.pageSize = 10; this.listQuery.pageSize = 10;
this.listQuery.warehouseStorehouseName = val.name; this.listQuery.warehouseStorehouseName = val.name;
this.listQuery.warehouseStorehouseCode = val.code; this.listQuery.trayCode = val.code;
this.listQuery.goodName = val.pname; this.listQuery.goodName = val.pname;
this.listQuery.goodCode = val.pcode; this.listQuery.goodCode = val.pcode;
this.listQuery.process = val.processId; this.listQuery.process = val.processId;