Commit 7c1f5846 authored by tyyin lan's avatar tyyin lan

chore: 繁体字调整

parent f353638e
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" /> <link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <title>DIGITAL_PERSON-FE</title> --> <title>萃想智能雲創</title>
<title>DIGITAL_PERSON_FE</title>
</head> </head>
<body> <body>
......
...@@ -29,8 +29,14 @@ export function createRouterGuards(router: Router) { ...@@ -29,8 +29,14 @@ export function createRouterGuards(router: Router) {
next() next()
}) })
router.afterEach(() => { router.afterEach((to) => {
document.title = import.meta.env.VITE_APP_NAME let title = import.meta.env.VITE_APP_NAME
if (to.meta.title) {
title += ` - ${to.meta.title}`
}
document.title = title
window.$loadingBar.finish() window.$loadingBar.finish()
}) })
......
...@@ -16,7 +16,7 @@ const exchangeInfoForm = ref({ ...@@ -16,7 +16,7 @@ const exchangeInfoForm = ref({
const exchangeInfoFormRules = shallowReadonly({ const exchangeInfoFormRules = shallowReadonly({
redemptionCode: { redemptionCode: {
required: true, required: true,
message: '請填禮包碼', message: '請填禮包碼',
trigger: 'blur', trigger: 'blur',
}, },
}) })
...@@ -51,7 +51,7 @@ function handleExchangeSubmit() { ...@@ -51,7 +51,7 @@ function handleExchangeSubmit() {
setTimeout(() => { setTimeout(() => {
window.$dialog.error({ window.$dialog.error({
title: '禮包兌換失敗', title: '禮包兌換失敗',
content: '請重新兌換或聯客服', content: '請重新兌換或聯客服',
contentStyle: { fontSize: '14px', marginTop: '20px' }, contentStyle: { fontSize: '14px', marginTop: '20px' },
closable: false, closable: false,
positiveText: '知道了', positiveText: '知道了',
...@@ -100,14 +100,16 @@ function onModalAfterLeave() { ...@@ -100,14 +100,16 @@ function onModalAfterLeave() {
</n-form> </n-form>
<div class="mb-[20px] mt-[16px]"> <div class="mb-[20px] mt-[16px]">
<h2>兌換明:</h2> <h2>兌換明:</h2>
<div class="mt-[6px] pl-[8px] leading-7"> <div class="mt-[6px] pl-[8px] leading-7">
<div>1、每個禮包碼僅限使用一次;</div> <div>1、每個禮包碼僅限使用一次;</div>
<div>2、禮包內容和適用條件以活動説明爲準;</div> <div>2、禮包內容和適用條件以活動說明為准;</div>
<div>3、兌換時,請準確無誤地輸入禮包碼,包括字母大小冩、數字位數;</div> <div>3、兌換時,請準確無誤地輸入禮包碼,包括字母大小寫、數位位數;</div>
<div>4、禮包碼一旦兌換成功,獎勵將直接髮放至您的賬戶中,不可轉移給其他賬戶;</div> <div>4、禮包碼一旦兌換成功,獎勵將直接發放至您的帳戶中,不可轉移給其他帳戶;</div>
<div>5、本活動最終解釋權歸萃想智能雲創所有,如有任何爭議,萃想保留決定權;</div> <div>5、本活動最終解釋權歸萃想智慧雲創所有,如有任何爭議,萃想保留決定權;</div>
<div>6、如遇無法正常兌換或其他問題,請尋求客服幫助。客服聯繫方式:蒐索微信公衆號:萃想AI工坊,後颱留言。</div> <div>
6、如遇無法正常兌換或其他問題,請尋求客服幫助。 客服聯繫方式:蒐索微信公眾號:萃想AI工坊,後臺留言。
</div>
</div> </div>
</div> </div>
......
...@@ -13,7 +13,7 @@ const userStore = useUserStore() ...@@ -13,7 +13,7 @@ const userStore = useUserStore()
const dropdownOptions = shallowRef([ const dropdownOptions = shallowRef([
{ {
label: '退出登', label: '退出登',
key: 'logout', key: 'logout',
icon: () => h(Logout, { theme: 'outline', size: 12, strokeWidth: 3 }), icon: () => h(Logout, { theme: 'outline', size: 12, strokeWidth: 3 }),
}, },
......
...@@ -18,7 +18,7 @@ const menuOptions = shallowReadonly<MenuOption[]>([ ...@@ -18,7 +18,7 @@ const menuOptions = shallowReadonly<MenuOption[]>([
key: 'Videos', key: 'Videos',
children: [ children: [
{ {
label: '工作', label: '工作',
key: 'Workbench', key: 'Workbench',
icon: () => h(Workbench, { ...iconConfigFactory() }), icon: () => h(Workbench, { ...iconConfigFactory() }),
}, },
......
...@@ -154,7 +154,7 @@ async function handleCreateDigitalHumanVideo(digitalHumanVideoForm: DigitalHuman ...@@ -154,7 +154,7 @@ async function handleCreateDigitalHumanVideo(digitalHumanVideoForm: DigitalHuman
<span v-else>-</span> <span v-else>-</span>
</div> </div>
<div></div> <div></div>
</div> </div>
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment