🚚 目录结构调整

This commit is contained in:
BTMuli
2023-12-18 13:42:50 +08:00
parent 842ba3221d
commit dced5755da
266 changed files with 443 additions and 443 deletions

View File

@@ -37,7 +37,7 @@ const props = defineProps<TucDetailDescWeaponProps>();
const box = computed(() => {
return {
bg: `/icon/bg/${props.modelValue.star}-Star.webp`,
icon: `/WIKI/weapon/icon/${props.modelValue.id}.webp`,
icon: `/WIKI/weapon/${props.modelValue.id}.webp`,
};
});
</script>

View File

@@ -220,7 +220,7 @@ onUpdated(() => {
const weaponBox = computed(() => {
const weapon = data.value.weapon;
return {
icon: `/WIKI/weapon/icon/${weapon.id}.webp`,
icon: `/WIKI/weapon/${weapon.id}.webp`,
bg: `/icon/bg/${weapon.star}-Star.webp`,
};
});

View File

@@ -55,7 +55,7 @@ const avatarBox = computed(() => {
height: "100px",
ltSize: "30px",
bg: `/icon/bg/${props.modelValue.star}-Star.webp`,
icon: `/WIKI/character/icon/${props.modelValue.cid}.webp`,
icon: `/WIKI/character/${props.modelValue.cid}.webp`,
lt: `/icon/element/${props.modelValue.element}.webp`,
rt: props.modelValue.activeConstellation.toString() || "0",
rtSize: "20px",
@@ -74,7 +74,7 @@ const weaponBox = computed(() => {
height: "100px",
ltSize: "30px",
bg: `/icon/bg/${weapon.star}-Star.webp`,
icon: `/WIKI/weapon/icon/${weapon.id}.webp`,
icon: `/WIKI/weapon/${weapon.id}.webp`,
lt: `/icon/weapon/${weapon.type}.webp`,
rt: weapon.affix.toString() || "0",
rtSize: "20px",