fix(任务中心): 修复性能测试报告不能跳转问题
This commit is contained in:
parent
98d106e6d6
commit
3537b54bdd
|
@ -144,7 +144,7 @@ export default {
|
|||
let status = row.executionStatus;
|
||||
if (status) {
|
||||
status = row.executionStatus.toLowerCase();
|
||||
if (status === 'Saved' || status === 'Completed' || status === 'success' || status === 'error') {
|
||||
if (status === 'saved' || status === 'completed' || status === 'success' || status === 'error') {
|
||||
this.taskVisible = false;
|
||||
switch (row.executionModule) {
|
||||
case "SCENARIO":
|
||||
|
|
Loading…
Reference in New Issue