Browse Source

Merge branch 'bug0818' into test

1178232204@qq.com 2 years ago
parent
commit
5ddb2d6b5b

+ 3 - 1
src/components/testManager/staticKnowledgeMap/StaticKnowledgeMapTest.vue

@@ -184,7 +184,9 @@ export default {
       if (this.hospitalId === "") return;
       api.getRunningStatusByHospitalId({ hospitalId }).then((res) => {
         if (res.data.code === "0" && res.data.data) {
-          this.runningStatusArr = Object.values(res.data.data).slice(9, 16);
+          const arr1 = Object.values(res.data.data).slice(9, 14);
+          const arr2 = Object.values(res.data.data).slice(15, 17);
+          this.runningStatusArr = arr1.concat(arr2)
         }
       });
     },