Skip to content

Commit 0f607ce

Browse files
committed
✏️ 调整部分命名
1 parent 2defb57 commit 0f607ce

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

src/pages/User/Characters.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<template #prepend>
55
<div class="uc-top-title">
66
<img alt="icon" src="/UI/nav/userAvatar.webp" />
7-
<span>我的角色</span>
7+
<span>角色列表</span>
88
<v-btn class="uc-top-btn" variant="elevated" @click="showSelect = true">筛选角色</v-btn>
99
<v-btn class="uc-top-btn" variant="elevated" @click="resetList()">重置筛选</v-btn>
1010
</div>

src/pages/User/Gacha.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ watch(
208208
);
209209
210210
async function toBeyond(): Promise<void> {
211-
await router.push({ name: "千星奇域祈愿记录" });
211+
await router.push({ name: "颂愿记录" });
212212
}
213213
214214
async function tryLoginHutao(): Promise<void> {

src/pages/User/Scripts.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- 实用脚本 -->
12
<template>
23
<v-app-bar>
34
<template #prepend>

src/router/modules/user.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
/**
22
* user 路由模块
3-
* @since Beta v0.8.4
3+
* @since Beta v0.9.6
44
*/
5+
56
import type { RouteRecordRaw } from "vue-router";
67

78
const userRoutes = (<const>[
@@ -22,7 +23,7 @@ const userRoutes = (<const>[
2223
},
2324
{
2425
path: "/user/characters",
25-
name: "我的角色",
26+
name: "角色列表",
2627
component: async () => await import("@/pages/User/Characters.vue"),
2728
},
2829
{
@@ -32,7 +33,7 @@ const userRoutes = (<const>[
3233
},
3334
{
3435
path: "/user/gachaB",
35-
name: "千星奇域祈愿记录",
36+
name: "颂愿记录",
3637
component: async () => await import("@/pages/User/GachaB.vue"),
3738
},
3839
{

0 commit comments

Comments
 (0)