fix(测试跟踪): 已归档计划点击父级tab脑图无弹窗
--user=郭雨琦 --bug=1013105 https://www.tapd.cn/55049933/bugtrace/bugs/view/1155049933001013105 本次提交 修复已归档测试计划点击与测试计划同级tab页面导致弹窗出现-实际不出现 修复已归档测试计划点击与测试跟踪同级tab页面导致弹窗出现-实际不出现
This commit is contained in:
parent
7a9bf0baf5
commit
8bd07d9962
|
@ -177,9 +177,13 @@ export default {
|
||||||
},
|
},
|
||||||
handleBeforeRouteLeave(to) {
|
handleBeforeRouteLeave(to) {
|
||||||
if (this.$store.state.isTestCaseMinderChanged) {
|
if (this.$store.state.isTestCaseMinderChanged) {
|
||||||
this.$refs.isChangeConfirm.open();
|
if (this.planStatus !== 'Archived') {
|
||||||
this.tmpPath = to.path;
|
this.$refs.isChangeConfirm.open();
|
||||||
return false;
|
this.tmpPath = to.path;
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue