Explorar el Código

Merge branch 'master' of http://121.42.8.157:13000/zengminguo/D-MAP

hao lei hace 11 meses
padre
commit
85ae1812f7
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. 4 0
      src/store/modules/case/mutations.js

+ 4 - 0
src/store/modules/case/mutations.js

@@ -110,6 +110,10 @@ export default {
         let caseTemp = state.autoCaseList.find(t => t.id == caseId);
         if (caseTemp) {
           caseTemp.status = c.status;
+          if(caseTemp.status == 'finished')
+          {
+            caseTemp.status = c.result;
+          }
         }
         // console.log('autoCaseList', state.autoCaseList);
       })