|
@@ -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}对应的导览或热点`);
|