CzRger vor 3 Monaten
Ursprung
Commit
1a74729b25

+ 2 - 0
src/views/manage/index/index.vue

@@ -193,6 +193,8 @@ const onTheme = (row) => {
 const onText = (row) => {
   state.text.transfer = {
     id: row.id,
+    indexTableName: row.indexTableName,
+    isCreateEsIndex: row.isCreateEsIndex,
     maxCol: row.columnModelNum < row.cardColumnNum ? row.columnModelNum : row.cardColumnNum,
   }
   state.text.show = true

+ 30 - 2
src/views/manage/index/text.vue

@@ -8,8 +8,16 @@
     :show-submit="false"
   >
     <div class="__cus-manage_content">
-      <div class="__cus-manage_content-filters">
-        <CusButton type="main" title="新增" style="display: block;margin-left: auto" @click="onAdd"/>
+      <div class="__cus-manage_content-filters" style="display: flex">
+        <CusButton type="main" title="新增" style="margin-left: auto" @click="onAdd"/>
+        <el-popover placement="bottom" v-if="transfer.isCreateEsIndex == 1">
+          <template #reference>
+            <CusButton type="main" title="一键生效"/>
+          </template>
+          <template v-for="item in DictionaryStore.taskMethodList">
+            <div class="__hover" @click="onTask(item.dictValue)">{{item.dictLabel}}</div>
+          </template>
+        </el-popover>
       </div>
       <div class="__cus-manage_content-main" v-loading="state.query.loading">
         <CusTable
@@ -49,6 +57,7 @@ import {
   sysIndexFieldList,
 } from "@/api/modules/manage";
 import TextDetailCom from './text-detail.vue'
+import {jobCreate} from "@/api/modules/manage/task";
 
 const emit = defineEmits(['update:show', 'refresh'])
 const {proxy} = getCurrentInstance()
@@ -132,9 +141,28 @@ watch(() => props.show, (n) => {
     initText()
   }
 })
+const onTask = (effect) => {
+  ElMessageBox.confirm(`请确认是一键生效(${DictionaryStore.taskMethodMap.get(effect)})?`, "提示", {
+    confirmButtonText: "确定",
+    cancelButtonText: "取消",
+    type: "warning",
+  } as any).then(() => {
+    const params = {
+      type: 1,
+      name: `${DictionaryStore.taskTypeMap.get(String(1))}_${proxy.$util.YMDHms(new Date())}`,
+      effect: effect,
+      indexCode: props.transfer.indexTableName,
+    }
+    jobCreate(params).then(res => {
+      ElMessage.success(res.data.respMsg)
+    })
+  }).catch(() => {})
+}
 const initDictionary = () => {
   DictionaryStore.initDict('true_false')
   DictionaryStore.initDict('fie_type')
+  DictionaryStore.initDict('task_method')
+  DictionaryStore.initDict('task_type')
 }
 </script>
 

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

@@ -123,8 +123,8 @@ const onTask = (row) => {
     type: 'warning'
   }).then(() => {
     const params = {
-      type: props.transfer.type,
-      name: `${DictionaryStore.taskTypeMap.get(String(props.transfer.type))}_${proxy.$util.YMDHms(new Date())}`,
+      type: 0,
+      name: `${DictionaryStore.taskTypeMap.get(String(0))}_${proxy.$util.YMDHms(new Date())}`,
       effect: 1,
       indexCode: row.indexTableName,
     }

+ 0 - 1
src/views/manage/system/entry/index.vue

@@ -148,7 +148,6 @@ const onEdit = (row) => {
 }
 const onIndex = () => {
   state.indexDetail.transfer = {
-    type: 0, // 队列类型:0-词,1-结构
   }
   state.indexDetail.show = true
 }

+ 0 - 1
src/views/manage/system/synonym/index.vue

@@ -137,7 +137,6 @@ const onEdit = (row) => {
 }
 const onIndex = () => {
   state.indexDetail.transfer = {
-    type: 1, // 队列类型:0-词,1-结构
   }
   state.indexDetail.show = true
 }