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

chore: 知识库选择模块过滤字段修改

parent 074484ef
...@@ -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'
......
...@@ -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: '编辑数据库'
......
...@@ -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: '編輯數據庫'
......
...@@ -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"
......
...@@ -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: {
......
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