From 3686b183c93f5daa55934c926892d52919b7e70d Mon Sep 17 00:00:00 2001 From: FCD <2453864257@qq.com> Date: Wed, 26 Nov 2025 17:04:44 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=9F=E4=BA=A7=E8=BF=87=E7=A8=8B=E6=A3=80?= =?UTF-8?q?=E3=80=81=E6=8A=A5=E5=91=8A=E6=96=B0=E5=A2=9E=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E8=BF=87=E7=A8=8B=E5=B7=A1=E6=A3=80=E5=8F=82?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/quality/produceReport/index.vue | 5 +++++ src/views/quality/qcProduce/index.vue | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/src/views/quality/produceReport/index.vue b/src/views/quality/produceReport/index.vue index d1940c4..0f6376d 100644 --- a/src/views/quality/produceReport/index.vue +++ b/src/views/quality/produceReport/index.vue @@ -929,6 +929,11 @@ export default { this.queryParams.checkTimeEnd = null; } + const routeCheckType = this.$route.query.checkType + if (routeCheckType){ + this.queryParams.checkType = routeCheckType + } + listProduce(this.queryParams).then(response => { this.incomeList = response.rows; this.total = response.total; diff --git a/src/views/quality/qcProduce/index.vue b/src/views/quality/qcProduce/index.vue index 0961079..75aa0d8 100644 --- a/src/views/quality/qcProduce/index.vue +++ b/src/views/quality/qcProduce/index.vue @@ -663,6 +663,10 @@ export default { this.queryParams.checkTimeStart = null; this.queryParams.checkTimeEnd = null; } + const routeCheckType = this.$route.query.checkType + if (routeCheckType){ + this.queryParams.checkType = routeCheckType + } listQcProduce(this.queryParams).then(response => { this.qcProduceList = response.rows;