|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<CusDialog
|
|
|
:show="show"
|
|
|
- title="索引构成"
|
|
|
+ title="数据构成"
|
|
|
@onClose="$emit('update:show', false)"
|
|
|
width="90%"
|
|
|
height="90%"
|
|
@@ -25,7 +25,7 @@
|
|
|
v-model="state.indexSelect"
|
|
|
:fetch-suggestions="fetchSuggestions"
|
|
|
clearable
|
|
|
- placeholder="搜索添加索引"
|
|
|
+ placeholder="搜索添加数据"
|
|
|
@select="handleSelect"
|
|
|
:select-when-unmatched="true"
|
|
|
>
|
|
@@ -90,19 +90,13 @@ const state: any = reactive({
|
|
|
loading: false,
|
|
|
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: "weight", label: "权重"},
|
|
|
{value: "fieldName", 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'},
|
|
|
],
|
|
|
result: {
|