|
@@ -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
|