|
@@ -3,21 +3,28 @@
|
|
|
:show="show"
|
|
|
title="索引列表"
|
|
|
@onClose="$emit('update:show', false)"
|
|
|
- width="1000px"
|
|
|
+ width="80%"
|
|
|
height="80%"
|
|
|
:show-close="false"
|
|
|
:show-submit="false"
|
|
|
>
|
|
|
<div class="__cus-manage_content">
|
|
|
- <CusForm labelWidth="100px" @handleEnter="onSearch">
|
|
|
+ <CusForm labelWidth="" @handleEnter="onSearch">
|
|
|
+<!-- <CusFormColumn-->
|
|
|
+<!-- :span="8"-->
|
|
|
+<!-- v-model:param="state.query.form.keyword"-->
|
|
|
+<!-- placeholder="请输入索引中文名称或索引表名进行搜索"-->
|
|
|
+<!-- />-->
|
|
|
<CusFormColumn
|
|
|
- :span="8"
|
|
|
- v-model:param="state.query.form.keyword"
|
|
|
- placeholder="请输入索引中文名称或索引表名进行搜索"
|
|
|
+ :span="4"
|
|
|
+ v-model:param="state.query.form.status"
|
|
|
+ label="状态"
|
|
|
+ link="select"
|
|
|
+ :options="DictionaryStore.effectStatusList"
|
|
|
/>
|
|
|
<CusButton style="margin-left: 20px" type="main" title="搜索" @click="onSearch"/>
|
|
|
<CusButton type="main" title="重置" @click="onReset"/>
|
|
|
- <CusButton style="margin-left: auto" type="main" title="一键同步" @click="onTaskAll"/>
|
|
|
+ <CusButton v-if="state.query.result.total > 0" style="margin-left: auto" type="main" title="一键处理" @click="onTaskAll"/>
|
|
|
</CusForm>
|
|
|
<div class="__cus-manage_content-main" v-loading="state.query.loading">
|
|
|
<CusTable
|
|
@@ -28,8 +35,11 @@
|
|
|
:table-head="state.query.tableHead"
|
|
|
@handlePage="onPage"
|
|
|
>
|
|
|
+ <template #status-column-value="{scope}">
|
|
|
+ {{DictionaryStore.effectStatusMap.get(String(scope.row.status))}}
|
|
|
+ </template>
|
|
|
<template #do-column-value="{scope}">
|
|
|
- <CusButton type="table" icon="relation" title="同步历史数据" @click="onTask(scope.row)"/>
|
|
|
+ <CusButton v-if="scope.row.status == 0 || scope.row.status == 3" type="table" icon="relation" title="生效" @click="onTask(scope.row)"/>
|
|
|
</template>
|
|
|
</CusTable>
|
|
|
</div>
|
|
@@ -41,8 +51,8 @@
|
|
|
import {computed, getCurrentInstance, nextTick, reactive, ref, watch} from "vue";
|
|
|
import {useDictionaryStore} from "@/stores";
|
|
|
import {ElMessage, ElMessageBox} from "element-plus";
|
|
|
-import {sysIndexFindIndexByPage} from "@/api/modules/manage";
|
|
|
import {jobCreate} from "@/api/modules/manage/task";
|
|
|
+import {effectQueryIndexWordEffectByPage} from "@/api/modules/manage/effect";
|
|
|
|
|
|
const emit = defineEmits(['update:show', 'refresh'])
|
|
|
const {proxy} = getCurrentInstance()
|
|
@@ -59,9 +69,14 @@ const state: any = reactive({
|
|
|
pageSize: 20
|
|
|
},
|
|
|
tableHead: [
|
|
|
- {value: "indexName", label: "索引中文"},
|
|
|
- {value: "indexTableName", label: "索引表名", popover: true},
|
|
|
- {value: "do", label: "操作", width: 200, fixed: 'right'},
|
|
|
+ {value: "indexName", label: "索引中文", fixed: 'left', width: 180},
|
|
|
+ {value: "indexCode", label: "索引表名", popover: true},
|
|
|
+ {value: "status", label: "状态"},
|
|
|
+ {value: "createTime", label: "创建时间", width: 200},
|
|
|
+ {value: "createUser", label: "创建人"},
|
|
|
+ {value: "updateTime", label: "最后修改时间", width: 200},
|
|
|
+ {value: "updateUser", label: "最后修改人"},
|
|
|
+ {value: "do", label: "操作", width: 160, fixed: 'right'},
|
|
|
],
|
|
|
form: {},
|
|
|
formReal: {},
|
|
@@ -81,9 +96,10 @@ const onPage = (pageNum, pageSize) => {
|
|
|
pageSize: pageSize
|
|
|
}
|
|
|
const params = {
|
|
|
- page: state.query.page.pageNum,
|
|
|
- size: state.query.page.pageSize,
|
|
|
- isCreateEsIndex: 1
|
|
|
+ pageNumber: state.query.page.pageNum,
|
|
|
+ pageSize: state.query.page.pageSize,
|
|
|
+ wordId: props.transfer.wordId,
|
|
|
+ wordType: props.transfer.wordType,
|
|
|
}
|
|
|
// 添加表单参数
|
|
|
for (const [k, v] of Object.entries(state.query.formReal)) {
|
|
@@ -92,9 +108,10 @@ const onPage = (pageNum, pageSize) => {
|
|
|
}
|
|
|
}
|
|
|
state.query.loading = true
|
|
|
- sysIndexFindIndexByPage(proxy.$util.formatGetParam(params)).then(res => {
|
|
|
- state.query.result.total = res.data.totalElements
|
|
|
- state.query.result.data = res.data.content
|
|
|
+ effectQueryIndexWordEffectByPage(params).then(res => {
|
|
|
+ console.log(res.data?.datas)
|
|
|
+ state.query.result.data = res.data?.datas || []
|
|
|
+ state.query.result.total = res.data?.records || 0
|
|
|
state.query.loading = false
|
|
|
})
|
|
|
}
|
|
@@ -117,16 +134,17 @@ watch(() => props.show, (n) => {
|
|
|
}
|
|
|
})
|
|
|
const onTask = (row) => {
|
|
|
- ElMessageBox.confirm(`确定要同步索引${row.indexName}(${row.indexTableName})吗?`, '提示', {
|
|
|
+ ElMessageBox.confirm(`确定要生效索引${row.indexTableName}(${row.indexCode})吗?`, '提示', {
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning'
|
|
|
}).then(() => {
|
|
|
const params = {
|
|
|
+ indexCode: row.indexCode,
|
|
|
type: 0,
|
|
|
- name: `${DictionaryStore.taskTypeMap.get(String(0))}_${proxy.$util.YMDHms(new Date())}`,
|
|
|
+ wordId: props.transfer.wordId,
|
|
|
+ wordType: props.transfer.wordType,
|
|
|
effect: 1,
|
|
|
- indexCode: row.indexTableName,
|
|
|
}
|
|
|
jobCreate(params).then(res => {
|
|
|
ElMessage.success(res.data.respMsg)
|
|
@@ -134,16 +152,17 @@ const onTask = (row) => {
|
|
|
}).catch(() => {})
|
|
|
}
|
|
|
const onTaskAll = () => {
|
|
|
- ElMessageBox.confirm(`确定要同步全部索引吗?`, '提示', {
|
|
|
+ ElMessageBox.confirm(`确定要一键处理全部索引吗?`, '提示', {
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning'
|
|
|
}).then(() => {
|
|
|
const params = {
|
|
|
- type: props.transfer.type,
|
|
|
- name: `${DictionaryStore.taskTypeMap.get(String(props.transfer.type))}_${proxy.$util.YMDHms(new Date())}`,
|
|
|
- effect: 1,
|
|
|
indexCode: 'all',
|
|
|
+ type: 0,
|
|
|
+ wordId: props.transfer.wordId,
|
|
|
+ wordType: props.transfer.wordType,
|
|
|
+ effect: 1,
|
|
|
}
|
|
|
jobCreate(params).then(res => {
|
|
|
ElMessage.success(res.data.respMsg)
|
|
@@ -151,7 +170,7 @@ const onTaskAll = () => {
|
|
|
}).catch(() => {})
|
|
|
}
|
|
|
const initDictionary = () => {
|
|
|
- DictionaryStore.initDict('task_type')
|
|
|
+ DictionaryStore.initDict('effect_status')
|
|
|
}
|
|
|
</script>
|
|
|
|