From 7fc2aa9e786846a52bacccafeb53d27c889b0d00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?yinjinlu-pc=5C=E5=B0=B9=E9=87=91=E8=B7=AF?= <411641505@qq.com> Date: Mon, 18 Sep 2023 13:06:31 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=9F=E4=BA=A7=E6=8A=A5=E5=B7=A5=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/TaskSelect/taskSelectSingle.vue | 2 ++ src/views/mes/pro/feedback/index.vue | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/src/components/TaskSelect/taskSelectSingle.vue b/src/components/TaskSelect/taskSelectSingle.vue index 334633f..33c179d 100644 --- a/src/components/TaskSelect/taskSelectSingle.vue +++ b/src/components/TaskSelect/taskSelectSingle.vue @@ -167,6 +167,7 @@ workstationId: null, workstationCode: null, workstationName: null, + routeId: null, processId: this.processId, processCode: null, processName: null, @@ -216,6 +217,7 @@ getList() { this.loading = true; listProtask(this.queryParams).then(response => { + debugger; this.protaskList = response.rows; this.total = response.total; this.loading = false; diff --git a/src/views/mes/pro/feedback/index.vue b/src/views/mes/pro/feedback/index.vue index 43ad677..c5daedc 100644 --- a/src/views/mes/pro/feedback/index.vue +++ b/src/views/mes/pro/feedback/index.vue @@ -414,6 +414,8 @@ export default { workstationId: null, workstationCode: null, workstationName: null, + routeId: null, + routeCode: null, processId: null, processCode: null, processName: null, @@ -591,6 +593,8 @@ export default { this.form.processId = row.processId; this.form.processCode = row.processCode; this.form.processName = row.processName; + this.form.routeId = row.routeId; + this.form.routeCode = row.routeCode; this.form.isCheck = row.isCheck; } },