mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-17 10:08:14 +08:00
💄 处理转义
This commit is contained in:
@@ -75,7 +75,7 @@
|
||||
<TSubLine>统计周期 {{ item.startTime }} ~ {{ item.endTime }}</TSubLine>
|
||||
<TucOverview :data="item.stat" :fights="item.detail.fight_statisic" />
|
||||
<TSubLine>使用角色({{ item.detail.backup_avatars.length }}名)</TSubLine>
|
||||
<TucAvatars :model-value="item.detail.backup_avatars" />
|
||||
<TucAvatars :model-value="item.detail.backup_avatars" :detail="false" />
|
||||
<TSubLine>详情</TSubLine>
|
||||
<div class="ucw-rounds">
|
||||
<TucRound
|
||||
@@ -139,6 +139,7 @@ onMounted(async () => {
|
||||
} else uidCur.value = "";
|
||||
await loadCombat();
|
||||
await showLoading.end();
|
||||
console.log("UserCombat", localCombat.value);
|
||||
});
|
||||
|
||||
watch(() => uidCur.value, loadCombat);
|
||||
|
||||
@@ -60,13 +60,13 @@ import { useRouter } from "vue-router";
|
||||
|
||||
import { useAppStore } from "@/store/modules/app.js";
|
||||
import TGLogger from "@/utils/TGLogger.js";
|
||||
import { decodeRegExp } from "@/utils/toolFunc.js";
|
||||
import Hk4eApi, { type AnnoLang, AnnoServer } from "@/web/request/hk4eReq.js";
|
||||
import { getAnnoCard } from "@/web/utils/getAnnoCard.js";
|
||||
import { decodeRegExp } from "@/web/utils/tools.js";
|
||||
|
||||
type AnnoSelect = { text: string; value: string };
|
||||
type AnnoKey = keyof typeof AnnoType;
|
||||
type AnnoCard = { [key in AnnoKey]: TGApp.App.Announcement.ListCard[] };
|
||||
type AnnoCard = { [key in AnnoKey]: Array<TGApp.App.Announcement.ListCard> };
|
||||
|
||||
const annoServerList: Array<AnnoSelect> = [
|
||||
{ text: "国服-官方服", value: AnnoServer.CN_ISLAND },
|
||||
|
||||
Reference in New Issue
Block a user