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
7c8fd3d6
Commit
7c8fd3d6
authored
Sep 10, 2025
by
tyyin lan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: 知识库选择模块过滤字段修改
parent
074484ef
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
4 deletions
+25
-4
en.yaml
src/locales/langs/en.yaml
+5
-0
zh-cn.yaml
src/locales/langs/zh-cn.yaml
+6
-0
zh-hk.yaml
src/locales/langs/zh-hk.yaml
+5
-0
personal-knowledge.vue
.../personal-space/personal-knowledge/personal-knowledge.vue
+4
-4
locales.d.ts
types/locales.d.ts
+5
-0
No files found.
src/locales/langs/en.yaml
View file @
7c8fd3d6
...
@@ -701,6 +701,11 @@ personal_space_module:
...
@@ -701,6 +701,11 @@ personal_space_module:
upload_QA_format_error_message
:
'
Only
xls
and
xlsx
files
can
be
uploaded.
Please
upload
them
again'
upload_QA_format_error_message
:
'
Only
xls
and
xlsx
files
can
be
uploaded.
Please
upload
them
again'
download_QA_template
:
'
Download
Q&A
Template'
download_QA_template
:
'
Download
Q&A
Template'
all
:
'
ALL'
enterprise
:
'
Enterprise'
department
:
'
Department'
individual
:
'
Individual'
database_module
:
database_module
:
create_database
:
'
Create
database'
create_database
:
'
Create
database'
edit_database
:
'
Edit
database'
edit_database
:
'
Edit
database'
...
...
src/locales/langs/zh-cn.yaml
View file @
7c8fd3d6
...
@@ -699,6 +699,12 @@ personal_space_module:
...
@@ -699,6 +699,12 @@ personal_space_module:
upload_QA_format_error_message
:
'
只能上传xls,xlsx格式文件,请重新上传'
upload_QA_format_error_message
:
'
只能上传xls,xlsx格式文件,请重新上传'
download_QA_template
:
'
下载问答模版'
download_QA_template
:
'
下载问答模版'
all
:
'
全部'
enterprise
:
'
企业'
department
:
'
部门'
individual
:
'
个人'
database_module
:
database_module
:
create_database
:
'
创建数据库'
create_database
:
'
创建数据库'
edit_database
:
'
编辑数据库'
edit_database
:
'
编辑数据库'
...
...
src/locales/langs/zh-hk.yaml
View file @
7c8fd3d6
...
@@ -699,6 +699,11 @@ personal_space_module:
...
@@ -699,6 +699,11 @@ personal_space_module:
upload_QA_format_error_message
:
'
只能上傳xls,xlsx格式文件,請重新上傳'
upload_QA_format_error_message
:
'
只能上傳xls,xlsx格式文件,請重新上傳'
download_QA_template
:
'
下載問答模版'
download_QA_template
:
'
下載問答模版'
all
:
'
全部'
enterprise
:
'
企業'
department
:
'
部門'
individual
:
'
個人'
database_module
:
database_module
:
create_database
:
'
創建數據庫'
create_database
:
'
創建數據庫'
edit_database
:
'
編輯數據庫'
edit_database
:
'
編輯數據庫'
...
...
src/views/personal-space/personal-knowledge/personal-knowledge.vue
View file @
7c8fd3d6
...
@@ -130,10 +130,10 @@ function handleSearchKnowledge() {
...
@@ -130,10 +130,10 @@ function handleSearchKnowledge() {
<div
ref=
"pageContentWrapRef"
class=
"h-full"
>
<div
ref=
"pageContentWrapRef"
class=
"h-full"
>
<div
class=
"mb-4 flex items-center justify-between"
>
<div
class=
"mb-4 flex items-center justify-between"
>
<NRadioGroup
v-model:value=
"knowledgeOwnerValue"
size=
"small"
>
<NRadioGroup
v-model:value=
"knowledgeOwnerValue"
size=
"small"
>
<NRadioButton
value=
"全部"
>
全部
</NRadioButton>
<NRadioButton
value=
"全部"
>
{{
t
(
'personal_space_module.knowledge_module.all'
)
}}
</NRadioButton>
<NRadioButton
value=
"集团"
>
集团
</NRadioButton>
<NRadioButton
value=
"集团"
>
{{
t
(
'personal_space_module.knowledge_module.enterprise'
)
}}
</NRadioButton>
<NRadioButton
value=
"部门"
>
部门
</NRadioButton>
<NRadioButton
value=
"部门"
>
{{
t
(
'personal_space_module.knowledge_module.department'
)
}}
</NRadioButton>
<NRadioButton
value=
"个人"
>
个人
</NRadioButton>
<NRadioButton
value=
"个人"
>
{{
t
(
'personal_space_module.knowledge_module.individual'
)
}}
</NRadioButton>
</NRadioGroup>
</NRadioGroup>
<NInput
<NInput
v-model:value=
"searchKnowledgeInputValue"
v-model:value=
"searchKnowledgeInputValue"
...
...
types/locales.d.ts
View file @
7c8fd3d6
...
@@ -719,6 +719,11 @@ declare namespace I18n {
...
@@ -719,6 +719,11 @@ declare namespace I18n {
upload_QA_format_error_message
:
string
upload_QA_format_error_message
:
string
download_QA_template
:
string
download_QA_template
:
string
}
}
all
:
string
enterprise
:
string
department
:
string
individual
:
string
}
}
database_module
:
{
database_module
:
{
...
...
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