|
@@ -8,6 +8,13 @@
|
|
v-model:param="state.query.form.keyword"
|
|
v-model:param="state.query.form.keyword"
|
|
placeholder="请输入索引中文名称或索引表名进行搜索"
|
|
placeholder="请输入索引中文名称或索引表名进行搜索"
|
|
/>
|
|
/>
|
|
|
|
+ <CusFormColumn
|
|
|
|
+ :span="4"
|
|
|
|
+ label="已创建索引"
|
|
|
|
+ v-model:param="state.query.form.isCreateEsIndex"
|
|
|
|
+ link="radio"
|
|
|
|
+ :options="DictionaryStore.trueFalseList"
|
|
|
|
+ />
|
|
<CusButton type="main" title="搜索" @click="onSearch"/>
|
|
<CusButton type="main" title="搜索" @click="onSearch"/>
|
|
<CusButton type="main" title="重置" @click="onReset"/>
|
|
<CusButton type="main" title="重置" @click="onReset"/>
|
|
<CusButton title="导出" style="margin-left: auto" @click="onExport"/>
|
|
<CusButton title="导出" style="margin-left: auto" @click="onExport"/>
|
|
@@ -32,6 +39,9 @@
|
|
<template #themeMode-column-value="{scope}">
|
|
<template #themeMode-column-value="{scope}">
|
|
{{DictionaryStore.themeModeMap.get(scope.row.themeMode)}}
|
|
{{DictionaryStore.themeModeMap.get(scope.row.themeMode)}}
|
|
</template>
|
|
</template>
|
|
|
|
+ <template #isCreateEsIndex-column-value="{scope}">
|
|
|
|
+ {{DictionaryStore.trueFalseMap.get(scope.row.isCreateEsIndex)}}
|
|
|
|
+ </template>
|
|
<template #do-column-value="{scope}">
|
|
<template #do-column-value="{scope}">
|
|
<CusButton type="table-add" title="创建索引" @click="onCreate(scope.row)"/>
|
|
<CusButton type="table-add" title="创建索引" @click="onCreate(scope.row)"/>
|
|
<CusButton type="table" icon="relation" title="关联分类" @click="onRelation(scope.row)"/>
|
|
<CusButton type="table" icon="relation" title="关联分类" @click="onRelation(scope.row)"/>
|
|
@@ -88,6 +98,7 @@ const state: any = reactive({
|
|
{value: "columnModelNum", label: "列模式列数", width: 180},
|
|
{value: "columnModelNum", label: "列模式列数", width: 180},
|
|
{value: "num", label: "数据量", width: 180},
|
|
{value: "num", label: "数据量", width: 180},
|
|
{value: "linkTypeNum", label: "关联分类数量", width: 180},
|
|
{value: "linkTypeNum", label: "关联分类数量", width: 180},
|
|
|
|
+ {value: "isCreateEsIndex", label: "已创建索引", width: 180},
|
|
{value: "createTime", label: "创建时间", width: 200},
|
|
{value: "createTime", label: "创建时间", width: 200},
|
|
{value: "updateTime", label: "最后修改时间", width: 200},
|
|
{value: "updateTime", label: "最后修改时间", width: 200},
|
|
{value: "remark", label: "备注", width: 200},
|
|
{value: "remark", label: "备注", width: 200},
|
|
@@ -232,6 +243,7 @@ const initDictionary = () => {
|
|
DictionaryStore.initDict('gx_cycle')
|
|
DictionaryStore.initDict('gx_cycle')
|
|
DictionaryStore.initDict('theme_mode')
|
|
DictionaryStore.initDict('theme_mode')
|
|
DictionaryStore.initDict('default_model')
|
|
DictionaryStore.initDict('default_model')
|
|
|
|
+ DictionaryStore.initDict('true_false')
|
|
}
|
|
}
|
|
onMounted(() => {
|
|
onMounted(() => {
|
|
initDictionary()
|
|
initDictionary()
|