fix(测试跟踪):使非只读用户可以编辑测试计划所关联的用例 (#1973)
This commit is contained in:
parent
65a21d5719
commit
d7b2318410
|
@ -484,7 +484,7 @@ export default {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
showDetail(row, event, column) {
|
showDetail(row, event, column) {
|
||||||
this.isReadOnly = true;
|
this.isReadOnly = !this.isTestManagerOrTestUser;
|
||||||
this.$refs.testPlanTestCaseEdit.openTestCaseEdit(row);
|
this.$refs.testPlanTestCaseEdit.openTestCaseEdit(row);
|
||||||
},
|
},
|
||||||
refresh() {
|
refresh() {
|
||||||
|
|
Loading…
Reference in New Issue