CzRger 7 months ago
parent
commit
e311063b7f

+ 10 - 0
src/api/modules/manage/dict.ts

@@ -0,0 +1,10 @@
+import { handle } from '../../index'
+
+const suffix = 'api'
+
+// 查询字典项
+export const dictGetAllSysDictsByValue = (params) => handle({
+  url: `/${suffix}/api/dict/getAllSysDictsByValue`,
+  method: 'get',
+  params
+})

+ 6 - 0
src/api/modules/manage/type.ts

@@ -7,3 +7,9 @@ export const sysLabelGetAllSysLabels = () => handle({
   url: `/${suffix}/sys/label/getAllSysLabels`,
   method: 'get',
 })
+// 查询所有分类
+export const sysLabelSave = (params: any) => handle({
+  url: `/${suffix}/sys/label/save`,
+  method: 'post',
+  params
+})

File diff suppressed because it is too large
+ 6 - 0
src/assets/svg/add.svg


File diff suppressed because it is too large
+ 8 - 0
src/assets/svg/del.svg


+ 5 - 0
src/assets/svg/edit.svg

@@ -0,0 +1,5 @@
+<svg width="16" height="17" viewBox="0 0 16 17" xmlns="http://www.w3.org/2000/svg">
+<g id="icon/&#232;&#190;&#147;&#229;&#133;&#165;&#231;&#188;&#150;&#232;&#190;&#145;">
+<path id="&#229;&#189;&#162;&#231;&#138;&#182;" fill-rule="evenodd" clip-rule="evenodd" d="M14.4836 4.01861L12.4336 1.66011L12.4291 1.65511C12.3357 1.55358 12.1778 1.54686 12.0761 1.64011L10.0266 3.52411L12.4511 6.21711L14.4641 4.36611C14.5639 4.2748 14.5726 4.12051 14.4836 4.01861ZM12.0756 6.56261L9.65063 3.86961L2.46512 10.4766L1.86562 13.4131L4.84312 13.2126L12.0756 6.56261ZM14.4531 14.4256H1.45312V15.4256H14.4531V14.4256Z"/>
+</g>
+</svg>

File diff suppressed because it is too large
+ 3 - 3
src/assets/svg/relation.svg


+ 64 - 0
src/components/cus/CusButton.vue

@@ -0,0 +1,64 @@
+<template>
+  <template v-if="type === 'main'">
+    <el-button type="primary">{{ title }}</el-button>
+  </template>
+  <template v-else-if="type === 'table-add'">
+    <div class="cus-table-button __hover">
+      <SvgIcon :name="icon || 'add'" size="12" color="var(--cus-main-color)"/>{{ title || '新增' }}
+    </div>
+  </template>
+  <template v-else-if="type === 'table'">
+    <div class="cus-table-button __hover">
+      <SvgIcon :name="icon" size="12" color="var(--cus-main-color)"/>{{ title }}
+    </div>
+  </template>
+  <template v-else-if="type === 'table-edit'">
+    <div class="cus-table-button __hover">
+      <SvgIcon :name="icon || 'edit'" size="12" color="var(--cus-main-color)"/>{{ title || '编辑' }}
+    </div>
+  </template>
+  <template v-else-if="type === 'table-del'">
+    <div class="cus-table-button __hover">
+      <SvgIcon :name="icon || 'del'" size="12" color="var(--cus-main-color)"/>{{ title || '删除' }}
+    </div>
+  </template>
+  <template v-else>
+    <el-button plain>{{ title }}</el-button>
+  </template>
+</template>
+
+<script setup lang="ts">
+defineOptions({
+  name: 'CusButton',
+});
+import {getCurrentInstance, reactive} from "vue";
+
+const {proxy} = getCurrentInstance()
+const props = defineProps({
+  type: {},
+  title: {},
+  icon: {}
+})
+const state: any = reactive({})
+</script>
+
+<style lang="scss" scoped>
+.el-button {
+  &.el-button--primary:hover {
+    background-color: rgba(var(--cus-main-color-rgb), 0.7);
+    border-color: rgba(var(--cus-main-color-rgb), 0.7);
+  }
+}
+.cus-table-button {
+  height: 24px;
+  display: inline-flex;
+  align-items: center;
+  border-radius: 2px;
+  border: 1px solid var(--cus-main-color);
+  padding: 0 8px;
+  gap: 4px;
+  font-weight: 400;
+  font-size: 12px;
+  color: var(--cus-main-color);
+}
+</style>

+ 1 - 1
src/components/cus/CusDialog.vue

@@ -24,7 +24,7 @@
           <slot name="head"/>
         </div>
         <div class="__cdh-close __hover" @click="CDClose()">
-          <SvgIcon name="close_2" size="14"/>
+          <SvgIcon name="close_1" size="14" color="#ffffff"/>
         </div>
       </div>
     </template>

+ 7 - 6
src/components/cus/CusTable.vue

@@ -110,7 +110,7 @@
         </template>
       </el-table>
     </div>
-    <div class="cus-table-page">
+    <div class="cus-table-page" v-if="!noPage">
       <CusPage
         :page-num="pageNum"
         :page-size="pageSize"
@@ -142,7 +142,8 @@ const props = defineProps({
   singledKey: {default: 'id'},
   showIndex: {default: true},
   selectable: {},
-  tableHead: {default: []}
+  tableHead: {default: []},
+  noPage: {default: false}
 })
 const state: any = reactive({})
 
@@ -198,16 +199,16 @@ const onPage = (pageNum, pageSize) => {
           }
         }
       }
-      .el-scrollbar__wrap {
-        max-height: 100% !important;
-        .el-table__body-wrapper, .el-table__fixed-body-wrapper {
+      .el-table__body-wrapper {
+        .el-scrollbar__wrap {
+          max-height: 100% !important;
           .el-table__body {
             .el-table__row {
               >td {
                 .cell {
                   font-size: 14px;
                   color: var(--cus-text-color-1);
-                  .el-link +.el-link {
+                  .el-link+.el-link, .cus-table-button+.cus-table-button {
                     margin-left: 10px;
                   }
                 }

+ 7 - 6
src/components/cus/CusTableColumn.vue

@@ -20,12 +20,13 @@
         </template>
         <template v-else>
           <slot :name="`${item?.value}-column-value`" :scope="scope">
-            <CusPopover v-if="item?.popover" :value="scope?.row[item?.value]">
-              <div class="__text-ellipsis">{{ scope?.row[item?.value] }}</div>
-            </CusPopover>
-            <template v-else>
-              {{ scope?.row[item?.value] }}
-            </template>
+            {{ scope?.row[item?.value] }}
+<!--            <CusPopover v-if="item?.popover" :value="scope?.row[item?.value]">-->
+<!--              <div class="__text-ellipsis">{{ scope?.row[item?.value] }}</div>-->
+<!--            </CusPopover>-->
+<!--            <template v-else>-->
+<!--              {{ scope?.row[item?.value] }}-->
+<!--            </template>-->
           </slot>
         </template>
       </template>

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

@@ -1,6 +1,6 @@
 export const dictionaryDefine = {
 	//接口参数 : [ '字典数据list名', '字典数据Map名', '字段数据ObjMap名' ],
-	sys_role_type: ['sysRoleTypeList', 'sysRoleTypeMap'], //  角色所属分类
+	label_type: ['labelTypeList', 'labelTypeMap'], //  标签类型
 }
 
 const stateMap = {}

+ 18 - 1
src/stores/dictionary.ts

@@ -3,19 +3,36 @@ import { dictionary, dictionaryDefine } from './dictionary-define'
 import { dictionaryOther, dictionaryOtherDefine } from './dictionary-other-define'
 import { defineStore } from 'pinia'
 import {mockApi} from "@/api/modules/global/global";
+import {dictGetAllSysDictsByValue, getDict} from "@/api/modules/manage/dict";
 
+const listToMap = (list) => {
+	const map = new Map()
+	list.forEach(v => {
+		map.set(v.dictValue, v.dictLabel)
+	})
+	return map
+}
 export const useDictionaryStore = defineStore('dictionary', {
 	state: () => ({
 		...dictionary,
 		...dictionaryOther,
+		typeLevelList: [
+			{dictLabel: '1级', dictValue: 1},
+			{dictLabel: '2级', dictValue: 2},
+			{dictLabel: '3级', dictValue: 3},
+			{dictLabel: '4级', dictValue: 4},
+		]
 	}),
 	getters: {
+		typeLevelMap() {
+			return listToMap(this.typeLevelList)
+		},
 	},
 	actions: {
 		initDict(type) {
 			return new Promise((resolve, reject) => {
 				if (this[dictionaryDefine[type][0]].length === 0) {
-					api.default.mockApi().then((res: any) => {
+					api.default.dictGetAllSysDictsByValue(type).then((res: any) => {
 						console.log(res)
 						// const data = res.data
 						// const map = new Map()

+ 18 - 4
src/stores/web.ts

@@ -26,6 +26,20 @@ export const useWebStore = defineStore('web', {
       })
       return map
     },
+    searchAreaIndexMap() {
+      const map = new Map()
+      const deep = (arr) => {
+        arr.forEach(v => {
+          if (v.children?.length > 0) {
+            deep(v.children)
+          } else {
+            map.set(v.treeId, v)
+          }
+        })
+      }
+      deep(this.searchAreaTree)
+      return map
+    },
   },
   actions: {
     getSearchAreaTree() {
@@ -34,12 +48,12 @@ export const useWebStore = defineStore('web', {
           this.searchAreaTree = readonly(res.data.filter(tag => tag.sysLabels?.length > 0).map(tag => {
             tag.treeId = tag.id
             tag.treeName = tag.labelName
-            tag.children = tag.sysLabels?.filter(type => type.sysLabels?.length > 0).map(type => {
+            tag.children = tag.sysLabels?.filter(type => type.sysIndexList?.length > 0).map(type => {
               type.treeId = type.id
               type.treeName = type.labelName
-              type.children = type.sysLabels?.map(index => {
-                index.treeId = index.id
-                index.treeName = index.labelName
+              type.children = type.sysIndexList?.map(index => {
+                index.treeId = index.indexTableName
+                index.treeName = index.indexName
                 return index
               })
               return type

+ 10 - 6
src/style/cus.scss

@@ -109,14 +109,14 @@
         ._cus-dialog-head {
           height: 50px;
           width: 100%;
-          background-color: #F5F7FA;
+          background-color: var(--cus-main-color);
           display: flex;
           align-items: center;
           border-radius: $borderRadius $borderRadius 0 0 ;
           font-size: 18px;
           font-family: PingFang SC-Medium, PingFang SC;
           font-weight: 500;
-          color: #303133;
+          color: #ffffff;
           padding: 0 20px 0 16px;
           box-sizing: border-box;
           .__cdh-title {}
@@ -243,10 +243,6 @@
     width: 100%;
     .el-button {
       margin-left: 10px;
-      &.el-button--primary:hover {
-        background-color: rgba(var(--cus-main-color-rgb), 0.7);
-        border-color: rgba(var(--cus-main-color-rgb), 0.7);
-      }
     }
   }
   .__cus-manage_content-main {
@@ -258,4 +254,12 @@
 .__cus-popover {
   max-width: 60% !important;
   width: auto !important;
+}
+
+.__cus-dialog-form {
+  padding: 20px;
+}
+
+em {
+  color: red;
 }

+ 3 - 1
src/utils/util.ts

@@ -648,4 +648,6 @@ export const extractRgbFromRgba = (rgbaString) => {
     return [parseInt(match[1], 10), parseInt(match[2], 10), parseInt(match[3], 10)];
   }
   return [46, 129, 255];
-}
+}
+
+export const _console = (p) => console.log(p)

+ 25 - 22
src/views/manage/index/index.vue

@@ -8,10 +8,10 @@
           v-model:param="state.query.form.keyword"
           placeholder="请输入索引中文名称或索引表名进行搜索"
         />
-        <el-button type="primary" @click="onSearch">搜索</el-button>
-        <el-button type="primary" @click="onReset">重置</el-button>
-        <el-button plain style="margin-left: auto">导出</el-button>
-        <el-button type="primary">新增</el-button>
+        <CusButton type="main" title="搜索" @click="onSearch"/>
+        <CusButton type="main" title="重置" @click="onReset"/>
+        <CusButton title="导出" style="margin-left: auto" @click="onReset"/>
+        <CusButton type="main" title="新增" @click="onReset"/>
       </CusForm>
     </div>
     <div class="__cus-manage_content-main">
@@ -42,29 +42,28 @@ const state: any = reactive({
       pageSize: 10
     },
     tableHead: [
-      {value: "a1", label: "索引中文", fixed: 'left', width: 180},
-      {value: "a1", label: "索引表名", fixed: 'left', width: 180},
-      {value: "a1", label: "数据共享来源", width: 180},
-      {value: "a1", label: "数据提供来源", width: 180},
-      {value: "a6", label: "共享方式", width: 180},
-      {value: "a6", label: "共享周期", width: 180},
-      {value: "a6", label: "图片字段", width: 180},
-      {value: "a6", label: "所属主题", width: 180},
-      {value: "a6", label: "图模式卡片数", width: 180},
-      {value: "a6", label: "卡片列数", width: 180},
-      {value: "a6", label: "列表模式列数", width: 180},
-      {value: "a6", label: "数据量", width: 180},
-      {value: "a6", label: "关联分类数量", width: 180},
-      {value: "a6", label: "创建时间", width: 180},
-      {value: "a1", label: "最后修改时间", width: 180},
-      {value: "a1", label: "备注", width: 200},
+      {value: "indexName", label: "索引中文", fixed: 'left', width: 180},
+      {value: "indexTableName", label: "索引表名", fixed: 'left', width: 180, popover: true},
+      {value: "dataSource", label: "数据共享来源", width: 180},
+      {value: "dataOffer", label: "数据提供来源", width: 180},
+      {value: "shareMethod", label: "共享方式", width: 180},
+      {value: "shareCycle", label: "共享周期", width: 180},
+      {value: "pictureField", label: "图片字段", width: 180},
+      {value: "themeMode", label: "所属主题", width: 180},
+      {value: "pictureModeCardNum", label: "图模式卡片数", width: 180},
+      {value: "cardColumnNum", label: "卡片列数", width: 180},
+      {value: "columnModelNum", label: "列表模式列数", width: 180},
+      {value: "num", label: "数据量", width: 180},
+      {value: "linkTypeNum", label: "关联分类数量", width: 180},
+      {value: "createTime", label: "创建时间", width: 180},
+      {value: "updateTime", label: "最后修改时间", width: 180},
+      {value: "remark", label: "备注", width: 200},
       {value: "do", label: "操作", width: 200, fixed: 'right'},
     ],
     form: {},
     result: {
       total: 0,
-      data: [
-      ]
+      data: []
     }
   }
 })
@@ -81,6 +80,10 @@ const onPage = (pageNum, pageSize) => {
     params.keyword = state.query.form.keyword
   }
   proxy.$api.sysIndexFindIndexByPage(proxy.$util.formatGetParam(params)).then(res => {
+    if (res.code === 200) {
+      state.query.result.total = res.data.totalElements
+      state.query.result.data = res.data.content
+    }
     console.log(res)
   })
 }

+ 116 - 0
src/views/manage/type/detail.vue

@@ -0,0 +1,116 @@
+<template>
+  <CusDialog
+    :show="show"
+    :title="titleCpt"
+    @onClose="$emit('update:show', false)"
+    width="1000px"
+    height="auto"
+    @onSubmit="onSubmit"
+  >
+    <div class="__cus-dialog-form">
+      <CusForm ref="ref_form">
+        <CusFormColumn
+          :span="24"
+          required
+          label="类型"
+          v-model:param="state.form.labelParentId"
+          link="radio"
+          :options="DictionaryStore.labelTypeList"
+          :disabled="true"
+        />
+        <CusFormColumn
+          :span="24"
+          required
+          label="名称"
+          v-model:param="state.form.labelName"
+        />
+        <CusFormColumn
+          :span="24"
+          required
+          label="层级"
+          v-model:param="state.form.labelLevel"
+          link="radio"
+          :options="DictionaryStore.typeLevelList"
+          :disabled="true"
+        />
+        <CusFormColumn
+          :span="8"
+          label="排序"
+          v-model:param="state.form.labelOrder"
+          link="input-number"
+        />
+        <CusFormColumn
+          :span="24"
+          label="备注"
+          v-model:param="state.form.remark"
+          type="textarea"
+          :rows="5"
+        />
+      </CusForm>
+    </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 {sysLabelSave} from "@/api/modules/manage/type";
+
+const {proxy} = getCurrentInstance()
+const DictionaryStore = useDictionaryStore()
+const props = defineProps({
+  show: {default: false},
+  transfer: {}
+ })
+const state: any = reactive({
+  form: {}
+})
+const ref_form = ref()
+const titleCpt = computed(() => {
+  let t = ''
+  switch (props.transfer.mode) {
+    case 'add': t = '新增分类'
+      break
+    case 'edit': t = '编辑分类'
+      break
+  }
+  return t
+})
+const onSubmit = () => {
+  ref_form.value.submit().then(() => {
+    ElMessageBox.confirm("是否提交?", "提示", {
+      confirmButtonText: "确定",
+      cancelButtonText: "取消",
+      type: "warning",
+    } as any).then(() => {
+      state.loading = true
+      proxy.$api.sysLabelSave(state.form).then(res => {
+
+      })
+    }).catch(() => {})
+  }).catch((e) => {
+    ElMessage({
+      message: e[0].message,
+      grouping: true,
+      type: 'warning',
+    })
+  })
+}
+watch(() => props.show, (n) => {
+  if (n) {
+    if (props.transfer.mode === 'add') {
+      state.form = {
+        labelParentId: props.transfer.pId,
+        labelLevel: 3
+      }
+    }
+    nextTick(() => {
+      ref_form.value.reset()
+    })
+  }
+})
+</script>
+
+<style lang="scss" scoped>
+</style>

+ 53 - 31
src/views/manage/type/index.vue

@@ -1,59 +1,81 @@
 <template>
   <div class="__cus-manage_content">
     <div class="__cus-manage_content-title"><SvgIcon class="flag" name="flag_1" color="var(--cus-main-color)"/>{{$route.meta.title}}</div>
-    <div class="__cus-manage_content-main">
+    <div class="__cus-manage_content-main" v-loading="state.query.loading">
       <CusTable
-        :page-num="state.query.page.pageNum"
-        :page-size="state.query.page.pageSize"
-        :total="state.query.result.total"
         :data="state.query.result.data"
         :table-head="state.query.tableHead"
+        :no-page="true"
+        default-expand-all
       >
-        <template #a1-column-value="scope">123</template>
+        <template #do-column-value="{scope}">
+          <template v-if="scope.row.labelLevel == 2">
+            <CusButton type="table-add" title="新增下级" @click="onAdd(scope.row)"/>
+          </template>
+          <template v-else>
+            <CusButton type="table" icon="relation" title="关联"/>
+            <CusButton type="table-edit"/>
+            <CusButton type="table-del"/>
+          </template>
+        </template>
       </CusTable>
     </div>
+    <DetailCom v-model:show="state.detail.show" :transfer="state.detail.transfer"/>
   </div>
 </template>
 
 <script setup lang="ts">
 import {getCurrentInstance, onMounted, reactive} from "vue";
+import DetailCom from './detail.vue'
+import {useDictionaryStore} from "@/stores";
 
 const {proxy} = getCurrentInstance()
+const DictionaryStore = useDictionaryStore()
 const state: any = reactive({
   query: {
-    page: {
-      pageNum: 1,
-      pageSize: 10
-    },
+    loading: false,
     tableHead: [
-      {value: "a1", label: "名称", align: 'left', minWidth: 400},
-      {value: "a1", label: "类型", width: 120},
-      {value: "a1", label: "排序", width: 120},
-      {value: "a1", label: "索引数量", width: 120},
-      {value: "a6", label: "创建时间", width: 180},
-      {value: "a1", label: "最后修改时间", width: 180},
-      {value: "a1", label: "备注", width: 200},
-      {value: "do", label: "操作", width: 200, fixed: 'right'},
+      {value: "labelName", label: "名称", align: 'left', headerAlign: 'left', minWidth: 400},
+      {value: "labelTypeName", label: "类型", width: 120},
+      {value: "labelOrder", label: "排序", width: 120},
+      {value: "indexNum", label: "索引数量", width: 120},
+      {value: "createTime", label: "创建时间", width: 180},
+      {value: "updateTime", label: "最后修改时间", width: 180},
+      {value: "remark", label: "备注", width: 200},
+      {value: "do", label: "操作", width: 220, fixed: 'right'},
     ],
-    form: {},
     result: {
-      total: 0,
-      data: [
-        {id:1,a1: 'a1', a21: 'a21', a22: 'a22', a31: 'a31', a321: 'a321', a322: 'a322', a4: 'a4', a5: 'a5', a6: '2023-04-05 12:99:22', a7: 'a7', a8: 'a8', a9: 'a9', a10: 'a10', a11: 'a11'},
-        {id:2,a1: 'a1', a21: 'a21', a22: 'a22', a31: 'a31', a321: 'a321', a322: 'a322', a4: 'a4', a5: 'a5', a6: 'a6', a7: 'a7', a8: 'a8', a9: 'a9', a10: 'a10', a11: 'a11', children: [
-            {id:3,a1: 'b1', a21: 'b21', a22: 'b22', a31: 'b31', a321: 'b321', a322: 'b322', a4: 'b4', a5: 'b5', a6: 'b6', a7: 'b7', a8: 'b8', a9: 'b9', a10: 'b10', a11: 'b11'},
-            {id:4,a1: 'b1', a21: 'b21', a22: 'b22', a31: 'b31', a321: 'b321', a322: 'b322', a4: 'b4', a5: 'b5', a6: 'b6', a7: 'b7', a8: 'b8', a9: 'b9', a10: 'b10', a11: 'b11'},
-          ]},
-        {id:5,a1: 'a1', a21: 'a21', a22: 'a22', a31: 'a31', a321: 'a321', a322: 'a322', a4: 'a4', a5: 'a5', a6: 'a6', a7: 'a7', a8: 'a8', a9: 'a9', a10: 'a10', a11: 'a11'},
-        {id:6,a1: 'a1', a21: 'a21', a22: 'a22', a31: 'a31', a321: 'a321', a322: 'a322', a4: 'a4', a5: 'a5', a6: 'a6', a7: 'a7', a8: 'a8', a9: 'a9', a10: 'a10', a11: 'a11'},
-        {id:6,a1: 'a1', a21: 'a21', a22: 'a22', a31: 'a31', a321: 'a321', a322: 'a322', a4: 'a4', a5: 'a5', a6: 'a6', a7: 'a7', a8: 'a8', a9: 'a9', a10: 'a10', a11: 'a11'},
-        {id:6,a1: 'a1', a21: 'a21', a22: 'a22', a31: 'a31', a321: 'a321', a322: 'a322', a4: 'a4', a5: 'a5', a6: 'a6', a7: 'a7', a8: 'a8', a9: 'a9', a10: 'a10', a11: 'a11'},
-      ]
+      data: []
     }
+  },
+  detail: {
+    show: false,
+    transfer: {}
   }
 })
+const initTree = () => {
+  state.query.loading = true
+  proxy.$api.sysLabelGetAllSysLabels().then(res => {
+    if (res.code === 200) {
+      state.query.result.data = res.data.map(v => ({...v, children: v.sysLabels}))
+    }
+    state.query.loading = false
+  })
+}
+const onAdd = (row) => {
+  console.log(row)
+  state.detail.transfer = {
+    mode: 'add',
+    pId: row.id
+  }
+  state.detail.show = true
+}
+const initDictionary = () => {
+  DictionaryStore.initDict('label_type')
+}
 onMounted(() => {
-  proxy.$api.sysLabelGetAllSysLabels()
+  initDictionary()
+  initTree()
 })
 </script>
 

+ 2 - 0
src/views/web/home/index.vue

@@ -132,6 +132,8 @@ const onIndexTabAll = () => {
   })
 }
 const toList = (text, isAll = false) => {
+  console.log(searchAreaCpt.value.arr)
+
   if (text) {
     const routerUrl = router.resolve({
       name: '4f6dd2ea-7c0a-4923-9a57-932ef42235f6',

+ 59 - 98
src/views/web/list/index.vue

@@ -84,7 +84,7 @@
                   <div>共享方式:</div>
                   <div>{{ state.resultParams.indexConfig?.shareMethod }}</div>
                   <div>更新周期:</div>
-                  <div>{{ state.resultParams.indexConfig?.updateCycle }}</div>
+                  <div>{{ state.resultParams.indexConfig?.shareCycle }}</div>
                 </div>
               </div>
               <div class="info">
@@ -92,7 +92,7 @@
                   <img src="@/assets/images/web/wen-list_table-head-icon-2.png"/>
                   <div class="text">
                     <div class="text-title">数据共享来源</div>
-                    <div class="text-value"><CusEllipsis :value="state.resultParams.indexConfig?.dataShareSource"/></div>
+                    <div class="text-value"><CusEllipsis :value="state.resultParams.indexConfig?.dataSource"/></div>
                   </div>
                 </div>
               </div>
@@ -101,7 +101,7 @@
                   <img src="@/assets/images/web/wen-list_table-head-icon-3.png"/>
                   <div class="text">
                     <div class="text-title">数据提供来源</div>
-                    <div class="text-value"><CusEllipsis :value="state.resultParams.indexConfig?.dataProvideSource"/></div>
+                    <div class="text-value"><CusEllipsis :value="state.resultParams.indexConfig?.dataOffer"/></div>
                   </div>
                 </div>
               </div>
@@ -110,7 +110,7 @@
                   <img src="@/assets/images/web/wen-list_table-head-icon-4.png"/>
                   <div class="text">
                     <div class="text-title">数据量</div>
-                    <div class="text-value"><CusEllipsis :value="(state.resultParams.indexConfig?.dataTotal || 0) + '条'"/></div>
+                    <div class="text-value"><CusEllipsis :value="(state.resultParams.indexConfig?.num || 0) + '条'"/></div>
                   </div>
                 </div>
               </div>
@@ -125,7 +125,7 @@
             </div>
           </div>
           <div class="table-content" v-loading="state.tableParams.loading">
-            <div class="table-content-result">
+            <div class="table-content-result" v-if="tableConfigCpt.listConfig?.length > 0">
               <div class="table-list" v-if="state.tableParams.model === 'list'">
                 <template v-for="(item, index) in state.tableParams.data">
                   <div class="list-item __hover">
@@ -224,7 +224,7 @@
 import {computed, getCurrentInstance, onBeforeMount, onMounted, reactive, ref, watch} from "vue";
 import {useRoute, useRouter} from "vue-router";
 import {useAppStore, useWebStore} from "@/stores";
-import {ElLoading} from "element-plus";
+import {ElLoading, ElMessage} from "element-plus";
 import {frontGetIndexAndFieldInfo} from "@/api/modules/web/list";
 
 const {proxy} = getCurrentInstance()
@@ -287,38 +287,34 @@ const currentIndexCpt = computed(() => {
   return JSON.parse(JSON.stringify(obj))
 })
 const tableConfigCpt = computed(() => {
-  return {
-    listCol: 5,
-    listConfig: [
-      {key: '姓名1', value: 'name', col: 2},
-      {key: '性别', value: 'sex', col: 1},
-      {key: '出生日期', value: 'a', col: 1},
-      {key: '出生日期1', value: 'a', col: 1},
-      {key: '出生日期2', value: 'a', col: 3},
-      {key: '出生日期3', value: 'a', col: 1},
-      {key: '出生日期4', value: 'a', col: 1},
-      {key: '出生日期5', value: 'a', col: 1},
-      {key: '出生日期6', value: 'a', col: 1},
-      {key: '出生日期7', value: 'a', col: 1},
-      {key: '出生日期8', value: 'a', col: 1},
-      {key: '出生日期9', value: 'a', col: 1},
-    ],
+  const listConfig = []
+  const cardConfig = []
+  let cardMain = {}
+  let cardImg = {}
+  state.resultParams.indexConfig?.sysIndexFields?.forEach(v => {
+    if (v.searchShow == 1) {
+      const obj = {key: v.fieldNameCn, value: v.fieldNameEn, col: v.labelLength}
+      listConfig.push(obj)
+      if (v.pictureField == 1) {
+        cardImg = obj
+      } else {
+        cardConfig.push(obj)
+      }
+    }
+  })
+  cardMain = cardConfig.shift()
+  const res = {
+    listCol: state.resultParams.indexConfig.columnModelNum,
+    listConfig: listConfig,
     hasCard: true,
-    cardLayout: 3,
-    cardCol: 2,
-    cardMain: {key: '姓名', value: 'name', col: 1},
-    cardImg: {key: '头像', value: 'avatar', isImg: true},
-    cardConfig: [
-      {key: '性别', value: 'sex', col: 1},
-      {key: '出生日期', value: 'a', col: 2},
-      {key: '出生日期1', value: 'a', col: 1},
-      {key: '出生日期2', value: 'a', col: 1},
-      {key: '出生日期3', value: 'a', col: 1},
-      {key: '出生日期4', value: 'a', col: 1},
-      {key: '出生日期5', value: 'a', col: 1},
-      {key: '出生日期6', value: 'a', col: 1},
-    ]
+    cardLayout: state.resultParams.indexConfig.pictureModeCardNum,
+    cardCol: state.resultParams.indexConfig.cardColumnNum,
+    cardMain: cardMain,
+    cardImg: cardImg,
+    cardConfig: cardConfig
   }
+  console.log(res)
+  return res
 })
 
 const initArea = () => {
@@ -341,11 +337,19 @@ const onDelFilter = (index) => {
   state.cascaderParams.value = temp
 }
 const onSearch = () => {
-  state.searchParams = JSON.parse(JSON.stringify({
-    text: state.searchText,
-    indexKey: state.cascaderParams.value
-  }))
-  initResultTree()
+  if (state.searchText) {
+    state.searchParams = JSON.parse(JSON.stringify({
+      text: state.searchText,
+      indexKey: state.cascaderParams.value
+    }))
+    initResultTree()
+  } else {
+    ElMessage({
+      message: '请输入关键字进行查询!',
+      grouping: true,
+      type: 'warning',
+    })
+  }
 }
 const initResultTree = () => {
   state.resultParams.activeTab = ''
@@ -374,51 +378,10 @@ const initResultTree = () => {
 }
 const getIndexConfig = () => {
   state.resultParams.indexConfig = {}
-  proxy.$api.frontGetIndexAndFieldInfo(`id=${state.resultParams.activeIndex}`).then(res => {
-    console.log(res)
-  })
-  setTimeout(() => {
-    state.resultParams.indexConfig = {
-      updateTime: '2024-09-09 14:20:20',
-      createTime: '2024-09-09 14:20:20',
-      shareMethod: '数据库表',
-      updateCycle: 'T+1',
-      dataShareSource: '海南省大数据管理局1、海南省大数据管理局2、海南省大数据管理局3',
-      dataProvideSource: '海南省大数据管理局',
-      dataTotal: '9125815819',
-      listCol: 5,
-      listConfig: [
-        {key: '姓名1', value: 'name', col: 2},
-        {key: '性别', value: 'sex', col: 1},
-        {key: '出生日期', value: 'a', col: 1},
-        {key: '出生日期1', value: 'a', col: 1},
-        {key: '出生日期2', value: 'a', col: 3},
-        {key: '出生日期3', value: 'a', col: 1},
-        {key: '出生日期4', value: 'a', col: 1},
-        {key: '出生日期5', value: 'a', col: 1},
-        {key: '出生日期6', value: 'a', col: 1},
-        {key: '出生日期7', value: 'a', col: 1},
-        {key: '出生日期8', value: 'a', col: 1},
-        {key: '出生日期9', value: 'a', col: 1},
-      ],
-      hasCard: true,
-      cardLayout: 3,
-      cardCol: 2,
-      cardMain: {key: '姓名', value: 'name', col: 1},
-      cardImg: {key: '头像', value: 'avatar', isImg: true},
-      cardConfig: [
-        {key: '性别', value: 'sex', col: 1},
-        {key: '出生日期', value: 'a', col: 2},
-        {key: '出生日期1', value: 'a', col: 1},
-        {key: '出生日期2', value: 'a', col: 1},
-        {key: '出生日期3', value: 'a', col: 1},
-        {key: '出生日期4', value: 'a', col: 1},
-        {key: '出生日期5', value: 'a', col: 1},
-        {key: '出生日期6', value: 'a', col: 1},
-      ]
-    }
+  proxy.$api.frontGetIndexAndFieldInfo(`id=${WebStore.searchAreaIndexMap.get(state.resultParams.activeIndex).id}`).then(res => {
+    state.resultParams.indexConfig = res.data
     state.ws.list()
-  },500)
+  })
 }
 const onPage = (pageNum, pageSize) => {
   state.tableParams.pageNum = pageNum
@@ -439,11 +402,10 @@ onMounted(() => {
   } else {
     state.searchText = text
     if (index) {
-      state.cascaderParams.value = index.split(',')
+      state.cascaderParams.value = index.split(',').map(v => Number(v))
     }
-    const ws: any = new WebSocket('ws://localhost:18375')
+    const ws: any = new WebSocket('/ws-api/smart-ws?userId=1388061846031220738')
     let sessionId = ''
-    let timestamp = new Date().getTime()
     let lastCountParams = ''
     let lastCountStep = 0
     let lastCountStep_ = 0
@@ -474,20 +436,18 @@ onMounted(() => {
               typeCode: type.treeId,
               datas: type.children.map(index => ({
                 indexCode: index.treeId,
-                datas: []
               }))
             }
           })
         }))
         lastCountStep = step
         lastCountStep_ = step
-        timestamp = new Date().getTime()
         const params = {
           builder: builder,
           keyData: state.searchParams.text,
           type: 'count',
           sessionId: sessionId,
-          timestamp: timestamp,
+          timestamp: new Date().getTime(),
           flag: 'run',
           orderBy: {}
         }
@@ -519,19 +479,19 @@ onMounted(() => {
           indexCode: state.resultParams.activeIndex,
           type: 'list',
           sessionId: sessionId,
-          timestamp: timestamp,
+          timestamp: new Date().getTime(),
           flag: 'run',
           orderBy: {}
         }
-        lastCountParams = JSON.stringify(params)
-        ws.send(lastCountParams)
+        lastListParams = JSON.stringify(params)
+        ws.send(lastListParams)
       }
     }
     ws.onmessage = (e) => {
       try {
         const json = JSON.parse(e.data)
-        if (typeof json === 'string') {
-          sessionId = json
+        if (json.type === 'session') {
+          sessionId = json.sessionId
           initArea()
         } else {
           switch (json.type) {
@@ -539,7 +499,7 @@ onMounted(() => {
               const p = JSON.parse(lastCountParams)
               // 返回为最新批次的
               if (json.timestamp == p.timestamp) {
-                const resTag = json.datas[0]
+                const resTag = json.datas
                 const resType = resTag.datas[0]
                 state.resultParams.tree.forEach(tag => {
                   if (tag.treeId == resTag.tagCode) {
@@ -583,12 +543,13 @@ onMounted(() => {
               }
             } break
             case 'list': {
-              const p = JSON.parse(lastCountParams)
+              const p = JSON.parse(lastListParams)
               // 返回为最新批次的
               if (json.timestamp == p.timestamp) {
                 state.tableParams.total = json.records
                 state.tableParams.data = json.datas
                 state.tableParams.loading = false
+                lastListParams = ''
               }
             } break
           }

+ 9 - 1
vite.config.ts

@@ -65,7 +65,15 @@ export default defineConfig({
         rewrite: (path) => {
           return path.replace(/^\/api/, '')
         }
-      }
+      },
+      '/ws-api': {
+        target: 'ws://8.130.72.63:18073/',
+        ws: true,
+        changeOrigin: true,
+        rewrite: path => {
+          return path.replace(/^\/ws-api/, '')
+        }
+      },
     }
   },
   // css: {