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