💄 处理转义

This commit is contained in:
目棃
2024-12-27 14:20:34 +08:00
parent 00ebacac23
commit f6ae5b335a
11 changed files with 340 additions and 123 deletions

View File

@@ -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);

View File

@@ -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 },