From 3e89e84bd2c1a190e2efc4f12c5a9562b0d7bc1b Mon Sep 17 00:00:00 2001 From: limin-fit2 Date: Fri, 11 Feb 2022 16:51:04 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=B5=8B=E8=AF=95=E8=AE=A1=E5=88=92):=20?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E8=AE=A1=E5=88=92=E6=96=B0=E5=A2=9E=E6=89=B9?= =?UTF-8?q?=E9=87=8F=E5=BC=80=E5=90=AF/=E5=85=B3=E9=97=AD=E5=AE=9A?= =?UTF-8?q?=E6=97=B6=E4=BB=BB=E5=8A=A1=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/track/plan/components/TestPlanList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/business/components/track/plan/components/TestPlanList.vue b/frontend/src/business/components/track/plan/components/TestPlanList.vue index 5264c8ada8..2caf9f375b 100644 --- a/frontend/src/business/components/track/plan/components/TestPlanList.vue +++ b/frontend/src/business/components/track/plan/components/TestPlanList.vue @@ -458,7 +458,7 @@ export default { if (this.stageOption.length > 0) { this.stageFilters = this.stageOption; this.stageFilters.forEach((stage) => { - if (stage.system != null && stage.system) { + if (stage.system !== null && stage.system) { stage.text = this.$t(stage.text); } }) @@ -561,7 +561,7 @@ export default { let size = 0; let row = this.$refs.testPlanLitTable.selectRows.size; this.$refs.testPlanLitTable.selectRows.forEach((item) => { - if (item.scheduleStatus != null && item.scheduleStatus != 'NOTSET') { + if (item.scheduleStatus !== null && item.scheduleStatus !== 'NOTSET') { param.push(item.scheduleId); size++; }