Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
poc-fe
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
poc
poc-fe
Commits
abf4b001
Commit
abf4b001
authored
Nov 06, 2024
by
tyyin lan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: 应用名称更改
parent
96d08ef0
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
12 additions
and
37 deletions
+12
-37
.env.development
.env.development
+1
-1
.env.production
.env.production
+1
-1
index.html
index.html
+1
-1
logo.png
src/assets/images/logo.png
+0
-0
page-logo.png
src/assets/images/page-logo.png
+0
-0
en.yaml
src/locales/langs/en.yaml
+1
-1
zh-cn.yaml
src/locales/langs/zh-cn.yaml
+2
-2
zh-hk.yaml
src/locales/langs/zh-hk.yaml
+1
-1
system-language.ts
src/store/modules/system-language.ts
+4
-29
login.vue
src/views/login/login.vue
+1
-1
No files found.
.env.development
View file @
abf4b001
VITE_APP_ENV = 'DEV'
VITE_APP_NAME = '
Super
Link'
VITE_APP_NAME = '
Model
Link'
VITE_APP_THEME_COLOR = '#000DFF'
VITE_PORT = 8848
...
...
.env.production
View file @
abf4b001
VITE_APP_ENV = 'PROD'
VITE_APP_NAME = '
Super
Link'
VITE_APP_NAME = '
Model
Link'
VITE_APP_THEME_COLOR = '#000DFF'
VITE_PUBLIC_PATH = /fe
...
...
index.html
View file @
abf4b001
...
...
@@ -9,7 +9,7 @@
content=
"width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<link
rel=
"stylesheet"
href=
"//at.alicdn.com/t/c/font_4711453_egfmzk2ywd.css"
/>
<title>
Super
Link
</title>
<title>
Model
Link
</title>
</head>
<body>
...
...
src/assets/images/logo.png
View replaced file @
96d08ef0
View file @
abf4b001
5.98 KB
|
W:
|
H:
4.61 KB
|
W:
|
H:
2-up
Swipe
Onion skin
src/assets/images/page-logo.png
View replaced file @
96d08ef0
View file @
abf4b001
3.1 KB
|
W:
|
H:
5.34 KB
|
W:
|
H:
2-up
Swipe
Onion skin
src/locales/langs/en.yaml
View file @
abf4b001
...
...
@@ -113,7 +113,7 @@ login_module:
other_login_methods
:
'
Other
login
methods'
home_module
:
agent_welcome_message
:
'
Hi,
welcome
to
Super
Link'
agent_welcome_message
:
'
Hi,
welcome
to
Model
Link'
agent_description
:
'
Here,
you
can
experience
models
and
dedicated
agents
for
multiple
platforms'
currently_in_the_latest_session
:
'
This
is
the
latest
session'
switching_over
:
'
Switching'
...
...
src/locales/langs/zh-cn.yaml
View file @
abf4b001
...
...
@@ -101,7 +101,7 @@ common_module:
goto
:
'
跳转至'
login_module
:
app_welcome_words
:
'
欢迎使用萃想POC
'
app_welcome_words
:
'
Hi,
欢迎使用Model
Link
'
please_enter_your_account_number
:
'
请输入账号'
please_enter_your_password
:
'
请输入密码'
please_enter_your_cell_phone_number
:
'
请输入手机号'
...
...
@@ -117,7 +117,7 @@ login_module:
other_login_methods
:
'
其他登录方式'
home_module
:
agent_welcome_message
:
'
Hi,
欢迎使用
Super
Link'
agent_welcome_message
:
'
Hi,
欢迎使用
Model
Link'
agent_description
:
'
在这里,你可以体验多个平台的模型和专属的智能体'
currently_in_the_latest_session
:
'
当前已是最新会话'
switching_over
:
'
切换中'
...
...
src/locales/langs/zh-hk.yaml
View file @
abf4b001
...
...
@@ -119,7 +119,7 @@ login_module:
interrupt_the_conversation_and_apply_the_history_prompt
:
'
當前回復尚未完成,是否確定打斷對話應用其它記錄?'
home_module
:
agent_welcome_message
:
'
Hi,
歡迎使用
Super
Link'
agent_welcome_message
:
'
Hi,
歡迎使用
Model
Link'
agent_description
:
'
在這裏,你可以體驗多個平臺的模型和專屬的智'
currently_in_the_latest_session
:
'
當前已是最新會話'
switching_over
:
'
切換中'
...
...
src/store/modules/system-language.ts
View file @
abf4b001
...
...
@@ -23,10 +23,10 @@ const defaultLanguageOptions = [
label
:
'中文繁體'
,
key
:
'zh-HK'
,
},
{
label
:
'English'
,
key
:
'en'
,
},
//
{
//
label: 'English',
//
key: 'en',
//
},
]
const
localeKey
=
ss
.
get
(
'i18nextLng'
)
||
defaultLocale
...
...
@@ -53,28 +53,3 @@ export const useSystemLanguageStore = defineStore('system-language-store', {
},
},
})
// export const useSystemLanguageStore = defineStore('system-language-store', () => {
// const currentLanguageInfo = ref({
// key: localeKey,
// label: defaultLanguageOptions.find((optionItem) => optionItem.key === localeKey)!.label,
// })
// const languageOptions = readonly(defaultLanguageOptions)
// function updateCurrentLanguageInfo(key: I18n.LangType) {
// if (currentLanguageInfo.value.key === key) return ''
// ss.set('i18nextLng', key)
// const { locale } = useI18n()
// locale.value = key
// currentLanguageInfo.value = defaultLanguageOptions.find((optionItem) => optionItem.key === key) as {
// key: string
// label: string
// }
// }
// return { currentLanguageInfo, languageOptions, updateCurrentLanguageInfo }
// })
src/views/login/login.vue
View file @
abf4b001
...
...
@@ -304,7 +304,7 @@ function handleEmailCodeGain() {
<
template
>
<div
class=
"bg-px-login_bg-png relative h-screen min-h-[750px] w-full min-w-[600px] bg-cover bg-center bg-no-repeat"
>
<div
class=
"bg-px-logo-png z-100 absolute left-[60px] top-[25px] h-[29px] w-[119px] bg-contain bg-center bg-no-repeat"
class=
"bg-px-logo-png z-100 absolute left-[60px] top-[25px] h-[29px] w-[119px]
!
bg-contain bg-center bg-no-repeat"
></div>
<div
class=
"z-100 absolute right-[60px] top-[25px] w-[140px]"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment