fix(接口定义): 修复禁用复制的场景-调试时显示STOP状态的缺陷 (#17126)
--bug=1016032 --user=赵勇 【接口测试】场景中复制其他场景-禁用复制的场景-调试时显示STOP状态 https://www.tapd.cn/55049933/s/1227881 Co-authored-by: wxg0103 <727495428@qq.com>
This commit is contained in:
parent
3172fc2928
commit
410baa8d4b
|
@ -755,7 +755,7 @@ export default {
|
|||
text-overflow: ellipsis;
|
||||
vertical-align: middle;
|
||||
white-space: nowrap;
|
||||
width: 200px;
|
||||
max-width: 200px;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
|
@ -109,7 +109,9 @@ export default {
|
|||
},
|
||||
watch: {
|
||||
message() {
|
||||
this.scenario.run = this.message !== "stop";
|
||||
if (this.message === 'stop') {
|
||||
this.scenario.run = false;
|
||||
}
|
||||
this.reload();
|
||||
},
|
||||
'node.data.isBatchProcess'() {
|
||||
|
|
|
@ -973,6 +973,6 @@ export default {
|
|||
text-overflow: ellipsis;
|
||||
vertical-align: middle;
|
||||
white-space: nowrap;
|
||||
width: 200px;
|
||||
max-width: 200px;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue