CzRger hai 7 meses
pai
achega
d9699acfe2

+ 16 - 0
src/api/modules/manage/index.ts

@@ -19,3 +19,19 @@ export const sysIndexGetDetail = (id: any) => handle({
   url: `/${suffix}/sys-index/getDetail/${id}`,
   method: 'get',
 })
+// 关联分类
+export const sysIndexFindAllByIndexId = (id: any) => handle({
+  url: `/${suffix}/sys-index/findAllByIndexId/${id}`,
+  method: 'get',
+})
+// 创建索引关联分类
+export const sysIndexCreate = (params: any) => handle({
+  url: `/${suffix}/sys-index/create`,
+  method: 'post',
+  params
+})
+// 删除索引关联分类
+export const sysIndexDeleteByLinkId = (id: any) => handle({
+  url: `/${suffix}/sys-index/deleteByLinkId/${id}`,
+  method: 'get',
+})

+ 1 - 1
src/views/manage/index/detail.vue

@@ -106,7 +106,7 @@
           v-if="state.form.shareMethod === 'lxfz'"
           :span="12"
           label="数据更新时间"
-          v-model:param="state.form.updateTime"
+          v-model:param="state.form.dataUpdateTime"
           link="datetime"
         />
         <CusFormColumn

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

@@ -41,6 +41,7 @@
       </CusTable>
     </div>
     <DetailCom v-model:show="state.detail.show" :transfer="state.detail.transfer" @refresh="onSearch"/>
+    <RelationCom v-model:show="state.relation.show" :transfer="state.relation.transfer" @refresh="onSearch"/>
   </div>
 </template>
 
@@ -49,6 +50,7 @@ import {getCurrentInstance, onMounted, reactive} from "vue";
 import {ElMessage} from "element-plus";
 import {sysIndexFindIndexByPage} from "@/api/modules/manage";
 import DetailCom from "./detail.vue";
+import RelationCom from "./relation.vue";
 import {useDictionaryStore} from "@/stores";
 
 const {proxy} = getCurrentInstance()
@@ -135,6 +137,10 @@ const onReset = () => {
   onSearch()
 }
 const onRelation = (row) => {
+  state.relation.transfer = {
+    id: row.id
+  }
+  state.relation.show = true
 }
 const onText = (row) => {
 }

+ 178 - 0
src/views/manage/index/relation.vue

@@ -0,0 +1,178 @@
+<template>
+  <CusDialog
+    :show="show"
+    title="关联分类"
+    @onClose="$emit('update:show', false)"
+    width="90%"
+    height="90%"
+    :show-submit="false"
+    :loading="state.loading"
+  >
+    <div class="__cus-manage_content">
+      <div class="__cus-manage_content-filters">
+        <CusFormColumn
+          :span="8"
+          link="tree-select"
+          :options="tagTreeCpt"
+          v-model:param="state.tagValue"
+          node-key="id"
+          :props="{
+            label: 'labelName',
+            value: 'id'
+          }"
+          default-expand-all
+          @change="handleSelect"
+        >
+          <template #default="{data}">
+            <div class="tree-item">
+              {{data.labelName}}
+            </div>
+          </template>
+        </CusFormColumn>
+      </div>
+      <div class="__cus-manage_content-main" v-loading="state.query.loading">
+        <CusTable
+          :data="state.query.result.data"
+          :table-head="state.query.tableHead"
+          :no-page="true"
+        >
+          <template #labelType-column-value="{scope}">
+            {{DictionaryStore.labelTypeMap.get(scope.row.labelType)}}
+          </template>
+          <template #do-column-value="{scope}">
+            <CusButton type="table-del" @click="onDel(scope.row)"/>
+          </template>
+        </CusTable>
+      </div>
+    </div>
+  </CusDialog>
+</template>
+
+<script setup lang="ts">
+import {computed, getCurrentInstance, nextTick, reactive, ref, watch} from "vue";
+import {useDictionaryStore} from "@/stores";
+import {ElMessage, ElMessageBox} from "element-plus";
+import {sysIndexCreate, sysIndexDeleteByLinkId, sysIndexFindAllByIndexId} from "@/api/modules/manage";
+import {sysLabelAddIndexToLabel, sysLabelGetAllSysLabels} from "@/api/modules/manage/type";
+
+const emit = defineEmits(['update:show', 'refresh'])
+const {proxy} = getCurrentInstance()
+const DictionaryStore = useDictionaryStore()
+const props = defineProps({
+  show: {default: false},
+  transfer: {}
+ })
+const state: any = reactive({
+  loading: false,
+  query: {
+    loading: false,
+    tableHead: [
+      {value: "labelType", label: "分类类型"},
+      {value: "labelName", label: "分类名称"},
+      {value: "linkTime", label: "关联时间"},
+      {value: "do", label: "操作", width: 100, fixed: 'right'},
+    ],
+    result: {
+      data: []
+    }
+  },
+  tagTree: [],
+  tagValue: ''
+})
+const tagTreeCpt = computed(() => {
+  const arr = state.tagTree.map(v => {
+    v.disabled = true
+    v.children = v.sysLabels.filter(s => state.query.result.data.every(c => c.typeId != s.id))
+    return v
+  }).filter(v => v.children?.length > 0)
+  return arr
+})
+const tagTreeMapCpt = computed(() => {
+  const map = new Map()
+  tagTreeCpt.value.forEach(v => {
+    v.children.forEach(c => {
+      map.set(c.id, c.labelName)
+    })
+  })
+  return map
+})
+const initTree = () => {
+  sysLabelGetAllSysLabels().then(res => {
+    if (res.code === 200) {
+      state.tagTree = res.data
+    } else {
+      ElMessage.error(res.msg)
+    }
+  })
+}
+const handleSelect = (val) => {
+  ElMessageBox.confirm(`是否关联${tagTreeMapCpt.value.get(val)}?`, "提示", {
+    confirmButtonText: "确定",
+    cancelButtonText: "取消",
+    type: "warning",
+  } as any).then(() => {
+    state.loading = true
+    sysIndexCreate({
+      indexId: props.transfer.id,
+      typeId: val
+    }).then(res => {
+      if (res.code === 200) {
+        ElMessage.success('添加成功!')
+        emit('refresh')
+        state.loading = false
+        state.tagValue = ''
+        initRelation()
+      } else {
+        ElMessage.error(res.msg)
+      }
+    })
+  }).catch(() => {})
+}
+const initRelation = () => {
+  state.query.loading = true
+  sysIndexFindAllByIndexId(props.transfer.id).then(res => {
+    if (res.code === 200) {
+      state.query.result.data = res.data
+      state.query.loading = false
+    } else {
+      ElMessage.error(res.msg)
+    }
+  })
+}
+const onDel = (row) => {
+  ElMessageBox.confirm(`请确认是否取消关联${row.labelName}?`, "提示", {
+    confirmButtonText: "确定",
+    cancelButtonText: "取消",
+    type: "warning",
+  } as any).then(() => {
+    state.loading = true
+    sysIndexDeleteByLinkId(row.id).then(res => {
+      if (res.code === 200) {
+        ElMessage.success('删除成功!')
+        emit('refresh')
+        state.loading = false
+        initRelation()
+      } else {
+        ElMessage.error(res.msg)
+      }
+    })
+  }).catch(() => {})
+}
+watch(() => props.show, (n) => {
+  if (n) {
+    initDictionary()
+    initTree()
+    initRelation()
+  }
+})
+const initDictionary = () => {
+  DictionaryStore.initDict('label_type')
+}
+</script>
+
+<style lang="scss" scoped>
+.__cus-manage_content {
+  margin-bottom: 0;
+  height: calc(100% - 24px);
+}
+</style>

+ 8 - 7
src/views/manage/type/relation.vue

@@ -50,7 +50,7 @@ import {
   sysLabelGetAllSysLabelTypes
 } from "@/api/modules/manage/type";
 
-const emit = defineEmits(['update:show'])
+const emit = defineEmits(['update:show', 'refresh'])
 const {proxy} = getCurrentInstance()
 const DictionaryStore = useDictionaryStore()
 const props = defineProps({
@@ -62,10 +62,10 @@ const state: any = reactive({
   query: {
     loading: false,
     tableHead: [
-      {value: "indexName", label: "索引中文", fixed: 'left'},
-      {value: "indexTableName", label: "索引表名", fixed: 'left', popover: true},
+      {value: "indexName", label: "索引中文"},
+      {value: "indexTableName", label: "索引表名", popover: true},
       {value: "num", label: "数据量", width: 100},
-      {value: "linkTime", label: "关联时间", width: 200},
+      {value: "linkTime", label: "关联时间", minWidth: 200},
       {value: "do", label: "操作", width: 100, fixed: 'right'},
     ],
     result: {
@@ -91,8 +91,7 @@ const fetchSuggestions = (queryString: string, cb: any) => {
   cb(results)
 }
 const handleSelect = (item) => {
-  console.log(item)
-  ElMessageBox.confirm(`是否添加${item.indexName}?`, "提示", {
+  ElMessageBox.confirm(`是否关联${item.indexName}?`, "提示", {
     confirmButtonText: "确定",
     cancelButtonText: "取消",
     type: "warning",
@@ -104,6 +103,7 @@ const handleSelect = (item) => {
     })).then(res => {
       if (res.code === 200) {
         ElMessage.success('添加成功!')
+        emit('refresh')
         state.loading = false
         ref_search.value?.blur()
         initRelation()
@@ -136,7 +136,7 @@ const initRelation = () => {
   })
 }
 const onDel = (row) => {
-  ElMessageBox.confirm(`请确认是否删除${row.indexName}?`, "提示", {
+  ElMessageBox.confirm(`请确认是否取消关联${row.indexName}?`, "提示", {
     confirmButtonText: "确定",
     cancelButtonText: "取消",
     type: "warning",
@@ -145,6 +145,7 @@ const onDel = (row) => {
     sysLabelDeleteLink(row.id).then(res => {
       if (res.code === 200) {
         ElMessage.success('删除成功!')
+        emit('refresh')
         state.loading = false
         initRelation()
       } else {

+ 1 - 1
src/views/web/list/index.vue

@@ -76,7 +76,7 @@
                 <img src="@/assets/images/web/wen-list_table-head-icon-1.png"/>
                 <div class="one">
                   <div>更新时间:</div>
-                  <div>{{ state.resultParams.indexConfig?.updateTime }}</div>
+                  <div>{{ state.resultParams.indexConfig?.dataUpdateTime }}</div>
                   <div>接入时间:</div>
                   <div>{{ state.resultParams.indexConfig?.createTime }}</div>
                 </div>