bill 7 meses atrás
pai
commit
eebd3933da
2 arquivos alterados com 5 adições e 5 exclusões
  1. 1 1
      src/views/security/data.ts
  2. 4 4
      src/views/security/store.ts

+ 1 - 1
src/views/security/data.ts

@@ -374,7 +374,7 @@ const c584 = [
           { title: "警用汽车停放位置", link: "警用汽车停放区域" },
           {
             title: "摩托车、电动自行车、自行车停放位置",
-            link: "摩托车、电动自行车、自行车停放",
+            link: "两轮车停放区域",
           },
           { title: "违停区域", link: "违停区域" },
         ],

+ 4 - 4
src/views/security/store.ts

@@ -100,22 +100,22 @@ export const data = store[params.caseId as unknown as "573"];
 export const getLinkAttr = (name: string) => {
   const t = taggings.value.find((t) => t.title.trim() === name.trim());
   if (t) {
-    return "/images/point.png";
+    return "./images/point.png";
   }
 
   const p = paths.value.find((p) => p.name.trim() === name.trim());
   if (p) {
-    return "/images/video.png";
+    return "./images/video.png";
   }
 
   const g = guides.value.find((p) => p.title.trim() === name.trim());
   if (g) {
-    return "/images/video.png";
+    return "./images/video.png";
   }
 
 
   if (name.includes('://')) {
-    return "/images/路径@1x (2).png"
+    return "./images/路径@1x (2).png"
   }
   console.error(toRaw(taggings.value), toRaw(guides.value), toRaw(paths.value), name)
   console.error(`找不到${name}对应的导览或热点`);