Browse Source

image数据

lhh 6 tháng trước cách đây
mục cha
commit
a632c22c93

BIN
src/assets/image/map/1234.png


BIN
src/assets/image/map/12345.png


BIN
src/assets/image/map/3.png


BIN
src/assets/image/map/4.png


BIN
src/assets/image/map/5.png


+ 46 - 1
src/stores/mapStore.js

@@ -163,7 +163,52 @@ export const useMapStore = defineStore('mapStore', () => {
   watch(
     () => currentToolSelectArray.value,
     (val) => {
-      console.log(val);
+      if (val.length == 1) {
+        if (val.includes('newAdress')) {
+          img.value = new URL('@/assets/image/map/1.png', import.meta.url).href;
+        }
+        if (val.includes('touch')) {
+          img.value = new URL('@/assets/image/map/2.png', import.meta.url).href;
+        }
+        if (val.includes('infectious')) {
+          img.value = new URL('@/assets/image/map/3.png', import.meta.url).href;
+        }
+        if (val.includes('feverClinic')) {
+          img.value = new URL('@/assets/image/map/4.png', import.meta.url).href;
+        }
+        if (val.includes('breathe')) {
+          img.value = new URL('@/assets/image/map/5.png', import.meta.url).href;
+        }
+
+        if (val.includes('flowCar')) {
+          img.value = new URL('@/assets/image/map/6.png', import.meta.url).href;
+        }
+        return;
+      }
+      if (val.includes('flowCar')) {
+        img.value = new URL('@/assets/image/map/6.png', import.meta.url).href;
+        return;
+      }
+      if (val.length >= 2 && val.length <= 3) {
+        if (val.includes('infectious')) {
+          img.value = new URL('@/assets/image/map/123.png', import.meta.url).href;
+          return;
+        }
+        if (val.includes('feverClinic')) {
+          img.value = new URL('@/assets/image/map/124.png', import.meta.url).href;
+          return;
+        }
+        if (val.includes('breathe')) {
+          img.value = new URL('@/assets/image/map/125.png', import.meta.url).href;
+          return;
+        }
+      }
+      if (val.length == 4) {
+        img.value = new URL('@/assets/image/map/124.png', import.meta.url).href;
+      }
+      if (val.length >= 5) {
+        img.value = new URL('@/assets/image/map/12345.png', import.meta.url).href;
+      }
     },
     {
       deep: true