CzRger vor 2 Monaten
Ursprung
Commit
c993979b48

+ 9 - 0
src/api/modules/manage/effect.ts

@@ -0,0 +1,9 @@
+import { handle } from '../../index'
+
+const suffix = 'api'
+// 列表
+export const effectQueryIndexWordEffectByPage = (params: any) => handle({
+  url: `/${suffix}/effect/queryIndexWordEffectByPage`,
+  method: 'post',
+  params
+})

+ 1 - 0
src/stores/dictionary-define.ts

@@ -34,6 +34,7 @@ export const dictionaryDefine = {
 	task_status: ['taskStatusList', 'taskStatusMap'], //  队列状态
 	task_method: ['taskMethodList', 'taskMethodMap'], //  队列方式
 	synonym_status: ['synonymStatusList', 'synonymStatusMap'], //  同义词状态
+	effect_status: ['effectStatusList', 'effectStatusMap'], //  生效状态
 }
 
 const stateMap = {}

+ 0 - 1
src/views/manage/index/text.vue

@@ -149,7 +149,6 @@ const onTask = (effect) => {
   } as any).then(() => {
     const params = {
       type: 1,
-      name: `${DictionaryStore.taskTypeMap.get(String(1))}_${proxy.$util.YMDHms(new Date())}`,
       effect: effect,
       indexCode: props.transfer.indexTableName,
     }

+ 44 - 25
src/views/manage/system/entry/index-list.vue

@@ -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>
 

+ 4 - 2
src/views/manage/system/entry/index.vue

@@ -25,7 +25,6 @@
         <CusButton type="main" title="搜索" @click="onSearch"/>
         <CusButton type="main" title="重置" @click="onReset"/>
         <CusButton type="main" title="新增" style="margin-left: auto" @click="onAdd"/>
-        <CusButton type="main" title="索引同步" @click="onIndex"/>
       </CusForm>
     </div>
     <div class="__cus-manage_content-main" v-loading="state.query.loading">
@@ -44,6 +43,7 @@
           {{DictionaryStore.entryStatusMap.get(String(scope.row.status))}}
         </template>
         <template #do-column-value="{scope}">
+          <CusButton v-if="scope.row.status == 1" type="table" title="索引状态" icon="relation" @click="onIndex(scope.row)"/>
           <CusButton v-if="scope.row.status == 0" type="table" title="启用" icon="enabled" @click="onStart(scope.row)"/>
           <CusButton v-if="scope.row.status == 1" type="table-del" title="停用" icon="disabled" @click="onStop(scope.row)"/>
           <CusButton v-if="scope.row.status == 0" type="table-edit" @click="onEdit(scope.row)"/>
@@ -146,8 +146,10 @@ const onEdit = (row) => {
   }
   state.detail.show = true
 }
-const onIndex = () => {
+const onIndex = (row) => {
   state.indexDetail.transfer = {
+    wordId: row.id,
+    wordType: 'hot',
   }
   state.indexDetail.show = true
 }

+ 4 - 2
src/views/manage/system/synonym/index.vue

@@ -18,7 +18,6 @@
         <CusButton type="main" title="搜索" @click="onSearch"/>
         <CusButton type="main" title="重置" @click="onReset"/>
         <CusButton type="main" title="新增" style="margin-left: auto" @click="onAdd"/>
-        <CusButton type="main" title="索引同步" @click="onIndex"/>
       </CusForm>
     </div>
     <div class="__cus-manage_content-main" v-loading="state.query.loading">
@@ -34,6 +33,7 @@
           {{DictionaryStore.synonymStatusMap.get(String(scope.row.swStatus))}}
         </template>
         <template #do-column-value="{scope}">
+          <CusButton v-if="scope.row.swStatus == 1" type="table" title="索引状态" icon="relation" @click="onIndex(scope.row)"/>
           <CusButton v-if="scope.row.swStatus == 0" type="table" title="启用" icon="enabled" @click="onStart(scope.row)"/>
           <CusButton v-if="scope.row.swStatus == 1" type="table-del" title="停用" icon="disabled" @click="onStop(scope.row)"/>
           <CusButton v-if="scope.row.swStatus == 0" type="table-edit" @click="onEdit(scope.row)"/>
@@ -135,8 +135,10 @@ const onEdit = (row) => {
   }
   state.detail.show = true
 }
-const onIndex = () => {
+const onIndex = (row) => {
   state.indexDetail.transfer = {
+    wordId: row.swId,
+    wordType: 'syn',
   }
   state.indexDetail.show = true
 }