生产报工修改

This commit is contained in:
yinjinlu-pc\尹金路 2023-09-18 13:06:31 +08:00
parent a7e87bd68c
commit 7fc2aa9e78
2 changed files with 6 additions and 0 deletions

View File

@ -167,6 +167,7 @@
workstationId: null, workstationId: null,
workstationCode: null, workstationCode: null,
workstationName: null, workstationName: null,
routeId: null,
processId: this.processId, processId: this.processId,
processCode: null, processCode: null,
processName: null, processName: null,
@ -216,6 +217,7 @@
getList() { getList() {
this.loading = true; this.loading = true;
listProtask(this.queryParams).then(response => { listProtask(this.queryParams).then(response => {
debugger;
this.protaskList = response.rows; this.protaskList = response.rows;
this.total = response.total; this.total = response.total;
this.loading = false; this.loading = false;

View File

@ -414,6 +414,8 @@ export default {
workstationId: null, workstationId: null,
workstationCode: null, workstationCode: null,
workstationName: null, workstationName: null,
routeId: null,
routeCode: null,
processId: null, processId: null,
processCode: null, processCode: null,
processName: null, processName: null,
@ -591,6 +593,8 @@ export default {
this.form.processId = row.processId; this.form.processId = row.processId;
this.form.processCode = row.processCode; this.form.processCode = row.processCode;
this.form.processName = row.processName; this.form.processName = row.processName;
this.form.routeId = row.routeId;
this.form.routeCode = row.routeCode;
this.form.isCheck = row.isCheck; this.form.isCheck = row.isCheck;
} }
}, },