mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
perf: Add a description of the parameters passed to the start node interface
This commit is contained in:
parent
4648f08f98
commit
6ea020f7f5
|
|
@ -141,7 +141,7 @@ export default {
|
|||
},
|
||||
},
|
||||
searchDocumentNode: {
|
||||
label: 'Document Search',
|
||||
label: 'Document Tag Retrieval',
|
||||
text: 'Search for documents that meet the conditions based on the document label within the specified search scope',
|
||||
selectKnowledge: 'Search Scope',
|
||||
searchSetting: 'Search Settings',
|
||||
|
|
|
|||
|
|
@ -148,7 +148,7 @@ export default {
|
|||
},
|
||||
},
|
||||
searchDocumentNode: {
|
||||
label: '文档检索',
|
||||
label: '文档标签检索',
|
||||
text: '从设定的检索范围中,根据文档标签检索出满足条件的文档',
|
||||
selectKnowledge: '检索范围',
|
||||
searchSetting: '检索设置',
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@ export default {
|
|||
},
|
||||
},
|
||||
searchDocumentNode: {
|
||||
label: '文檔檢索',
|
||||
label: '文檔標籤檢索',
|
||||
text: '從設定的檢索範圍中,根據文檔標籤檢索出符合條件的文檔',
|
||||
selectKnowledge: '檢索範圍',
|
||||
searchSetting: '檢索設定',
|
||||
|
|
|
|||
|
|
@ -24,7 +24,15 @@
|
|||
@blur="form.variable = form.variable.trim()"
|
||||
/>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item :label="$t('common.desc')">
|
||||
<el-input
|
||||
v-model="form.desc"
|
||||
:placeholder="$t('common.descPlaceholder')"
|
||||
@blur="form.name = form.name.trim()"
|
||||
maxlength="64"
|
||||
show-word-limit
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('dynamicsForm.paramForm.required.label')" @click.prevent>
|
||||
<el-switch size="small" v-model="form.is_required"></el-switch>
|
||||
</el-form-item>
|
||||
|
|
@ -43,22 +51,6 @@
|
|||
@blur="form.name = form.name.trim()"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item
|
||||
:label="$t('common.desc')"
|
||||
prop="desc"
|
||||
:rules="{
|
||||
required: form.is_required,
|
||||
message:
|
||||
$t('common.inputPlaceholder') + $t('common.desc'),
|
||||
trigger: 'blur',
|
||||
}"
|
||||
>
|
||||
<el-input
|
||||
v-model="form.desc"
|
||||
:placeholder="$t('dynamicsForm.default.placeholder')"
|
||||
@blur="form.name = form.name.trim()"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<span class="dialog-footer">
|
||||
|
|
|
|||
Loading…
Reference in New Issue