From dd4cce692ab672d4fdb9b07dd320ba4ca01115b9 Mon Sep 17 00:00:00 2001 From: chenjianxing Date: Tue, 18 Oct 2022 15:59:06 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=B5=8B=E8=AF=95=E8=B7=9F=E8=B8=AA):=20?= =?UTF-8?q?=E5=88=87=E6=8D=A2=E9=A1=B9=E7=9B=AE=E6=B5=8B=E8=AF=95=E8=AE=A1?= =?UTF-8?q?=E5=88=92=E8=B7=B3=E8=BD=AC=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --bug=1018333 --user=陈建星 【测试跟踪】测试计划执行中切换项目,切换的项目没有测试计划但依然存在数据 https://www.tapd.cn/55049933/s/1266020 --bug=1018347 --user=陈建星 【测试跟踪】切换项目,项目下的测试计划会出现为空的情况 https://www.tapd.cn/55049933/s/1266253 --- test-track/frontend/src/business/plan/view/TestPlanView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-track/frontend/src/business/plan/view/TestPlanView.vue b/test-track/frontend/src/business/plan/view/TestPlanView.vue index 340cf19456..dd86f3c951 100644 --- a/test-track/frontend/src/business/plan/view/TestPlanView.vue +++ b/test-track/frontend/src/business/plan/view/TestPlanView.vue @@ -180,7 +180,7 @@ export default { }, methods: { handleProjectChange() { - if (this.$route.name === 'planView') { + if (this.$route.path.indexOf("plan/view") > 0) { this.$router.push('/track/plan/all'); } },