|
@@ -10,19 +10,30 @@
|
|
>
|
|
>
|
|
<div class="__cus-manage_content">
|
|
<div class="__cus-manage_content">
|
|
<div class="__cus-manage_content-filters" v-loading="state.loadingIndex">
|
|
<div class="__cus-manage_content-filters" v-loading="state.loadingIndex">
|
|
- <el-autocomplete
|
|
|
|
- ref="ref_search"
|
|
|
|
- v-model="state.indexSelect"
|
|
|
|
- :fetch-suggestions="fetchSuggestions"
|
|
|
|
- clearable
|
|
|
|
- placeholder="搜索添加索引"
|
|
|
|
- @select="handleSelect"
|
|
|
|
- :select-when-unmatched="true"
|
|
|
|
- >
|
|
|
|
- <template #default="{ item }">
|
|
|
|
- <div class="index-item" v-html="item.html"/>
|
|
|
|
- </template>
|
|
|
|
- </el-autocomplete>
|
|
|
|
|
|
+ <el-row>
|
|
|
|
+ <CusFormColumn
|
|
|
|
+ :span="2"
|
|
|
|
+ v-model:param="state.type"
|
|
|
|
+ link="select"
|
|
|
|
+ :options="DictionaryStore.serviceTypeList"
|
|
|
|
+ @change="initIndex"
|
|
|
|
+ />
|
|
|
|
+ <el-col :span="22">
|
|
|
|
+ <el-autocomplete
|
|
|
|
+ ref="ref_search"
|
|
|
|
+ v-model="state.indexSelect"
|
|
|
|
+ :fetch-suggestions="fetchSuggestions"
|
|
|
|
+ clearable
|
|
|
|
+ placeholder="搜索添加索引"
|
|
|
|
+ @select="handleSelect"
|
|
|
|
+ :select-when-unmatched="true"
|
|
|
|
+ >
|
|
|
|
+ <template #default="{ item }">
|
|
|
|
+ <div class="index-item" v-html="item.html"/>
|
|
|
|
+ </template>
|
|
|
|
+ </el-autocomplete>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
</div>
|
|
</div>
|
|
<div class="__cus-manage_content-main" v-loading="state.query.loading">
|
|
<div class="__cus-manage_content-main" v-loading="state.query.loading">
|
|
<CusTable
|
|
<CusTable
|
|
@@ -70,16 +81,24 @@ const props = defineProps({
|
|
})
|
|
})
|
|
const state: any = reactive({
|
|
const state: any = reactive({
|
|
loading: false,
|
|
loading: false,
|
|
|
|
+ type: 'inner_index', // outside_service
|
|
query: {
|
|
query: {
|
|
loading: false,
|
|
loading: false,
|
|
tableHead: [
|
|
tableHead: [
|
|
|
|
+ {value: "type", label: "数据类型", width: 120},
|
|
{value: "indexTableName", label: "索引英文", popover: true},
|
|
{value: "indexTableName", label: "索引英文", popover: true},
|
|
- {value: "indexName", label: "索引名称"},
|
|
|
|
- {value: "indexNameShort", label: "索引简称"},
|
|
|
|
- {value: "isMain", label: "主索引"},
|
|
|
|
- {value: "fieldName", label: "关联索引"},
|
|
|
|
|
|
+ {value: "indexName", label: "数据名称"},
|
|
|
|
+ {value: "indexNameShort", label: "数据简称"},
|
|
|
|
+ {value: "isMain", label: "主数据"},
|
|
{value: "weight", label: "权重"},
|
|
{value: "weight", label: "权重"},
|
|
|
|
+ {value: "fieldName", label: "关联数据"},
|
|
{value: "description", label: "关系描述"},
|
|
{value: "description", label: "关系描述"},
|
|
|
|
+ // {value: "indexName", label: "索引名称"},
|
|
|
|
+ // {value: "indexNameShort", label: "索引简称"},
|
|
|
|
+ // {value: "isMain", label: "主索引"},
|
|
|
|
+ // {value: "fieldName", label: "关联索引"},
|
|
|
|
+ // {value: "weight", label: "权重"},
|
|
|
|
+ // {value: "description", label: "关系描述"},
|
|
{value: "do", label: "操作", width: 360, fixed: 'right'},
|
|
{value: "do", label: "操作", width: 360, fixed: 'right'},
|
|
],
|
|
],
|
|
result: {
|
|
result: {
|
|
@@ -132,10 +151,12 @@ const handleSelect = (item) => {
|
|
}
|
|
}
|
|
const initIndex = () => {
|
|
const initIndex = () => {
|
|
state.loadingIndex = true
|
|
state.loadingIndex = true
|
|
- sysLabelGetAllIndexsByKey().then(res => {
|
|
|
|
- state.indexList = res.data
|
|
|
|
- state.loadingIndex = false
|
|
|
|
- })
|
|
|
|
|
|
+ setTimeout(() => {
|
|
|
|
+ sysLabelGetAllIndexsByKey(proxy.$util.formatGetParam({type: state.type})).then(res => {
|
|
|
|
+ state.indexList = res.data
|
|
|
|
+ state.loadingIndex = false
|
|
|
|
+ })
|
|
|
|
+ }, 100)
|
|
}
|
|
}
|
|
const initRelation = () => {
|
|
const initRelation = () => {
|
|
state.query.loading = true
|
|
state.query.loading = true
|
|
@@ -205,6 +226,7 @@ const initDetail = () => {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
watch(() => props.show, (n) => {
|
|
watch(() => props.show, (n) => {
|
|
|
|
+ initDictionary()
|
|
if (n) {
|
|
if (n) {
|
|
initIndex()
|
|
initIndex()
|
|
initRelation()
|
|
initRelation()
|
|
@@ -213,6 +235,7 @@ watch(() => props.show, (n) => {
|
|
})
|
|
})
|
|
const initDictionary = () => {
|
|
const initDictionary = () => {
|
|
DictionaryStore.initDict('is_main_index')
|
|
DictionaryStore.initDict('is_main_index')
|
|
|
|
+ DictionaryStore.initDict('service_type')
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
|
|
|