refactor(测试跟踪): 修复测试计划场景用例批量执行不显示默认运行环境问题
--user=郭雨琦 https://www.tapd.cn/55049933/bugtrace/bugs/view/1155049933001019836
This commit is contained in:
parent
998c6ff12c
commit
913434e11c
|
@ -446,7 +446,10 @@ export default {
|
||||||
rows.forEach(row => {
|
rows.forEach(row => {
|
||||||
this.planCaseIds.push(row.id);
|
this.planCaseIds.push(row.id);
|
||||||
})
|
})
|
||||||
|
//防止this.planCaseIds没有及时绑定
|
||||||
|
this.$nextTick(()=>{
|
||||||
this.$refs.runMode.open('API');
|
this.$refs.runMode.open('API');
|
||||||
|
})
|
||||||
},
|
},
|
||||||
orderBySelectRows(rows) {
|
orderBySelectRows(rows) {
|
||||||
let selectIds = Array.from(rows).map(row => row.id);
|
let selectIds = Array.from(rows).map(row => row.id);
|
||||||
|
|
Loading…
Reference in New Issue