🌱 草创队伍出场页,3/4

This commit is contained in:
BTMuli
2023-07-02 20:13:51 +08:00
parent afdf1f5bee
commit 7c262daf5e
2 changed files with 199 additions and 2 deletions

View File

@@ -0,0 +1,55 @@
<template>
<TItemBox :model-value="box" />
</template>
<script setup lang="ts">
// vue
import { ref, onMounted, computed } from "vue";
import TItemBox, { type TItemBoxData } from "../main/t-itembox.vue";
// plugins
import TGSqlite from "../../plugins/Sqlite";
interface TibWikiAbyssProps {
modelValue: string;
}
const props = defineProps<TibWikiAbyssProps>();
const defaultAvatar = <TGApp.Sqlite.Character.AppData>{
birthday: "",
element: "",
id: props.modelValue,
name: "旅行者",
nameCard: "",
star: 5,
title: "",
updated: "",
weapon: "单手剑",
};
const avatar = ref<TGApp.Sqlite.Character.AppData>(defaultAvatar);
const box = computed<TItemBoxData>(() => {
return {
bg: `/icon/bg/${avatar.value?.star}-Star.webp`,
clickable: false,
display: "outer",
height: "80px",
icon: `/WIKI/character/icon/${avatar.value?.id}.webp`,
innerHeight: 20,
innerText: avatar.value.name,
lt:
avatar.value.element !== ""
? `/icon/element/${avatar.value.element}元素.webp`
: `/icon/weapon/${avatar.value.weapon}.webp`,
ltSize: "30px",
size: "80px",
};
});
onMounted(async () => {
// 如果是 10000005或 10000007就是主角
if (props.modelValue === "10000005" || props.modelValue === "10000007") {
return;
}
avatar.value = await TGSqlite.getAppCharacter(Number(props.modelValue));
});
</script>