Browse Source

自动化测试失败提示

zhouna 5 năm trước cách đây
mục cha
commit
f5be703791
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/components/qualityControl/AutoTestList.vue

+ 2 - 2
src/components/qualityControl/AutoTestList.vue

@@ -178,10 +178,10 @@
           if(res.data.code==="0"){
             //this.loading=false;
             loadingInstance.close();
-            this.warning(res.data.msg||'操作成功','success');
+            this.warning('操作成功','success');
             this.getDataList();
           }else{
-            this.warning("自动化测试失败");
+            this.warning(res.data.msg||"自动化测试失败");
           }
         });
       },