From 626086d6f2106df7ff161ea66fe5a8d8a6863319 Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Tue, 19 Nov 2024 14:52:58 +0800
Subject: [PATCH] 工具

---
 src/views/space/components/box/dataContent.vue |  116 ++++++++++++++++++++++++----------------------------------
 1 files changed, 48 insertions(+), 68 deletions(-)

diff --git a/src/views/space/components/box/dataContent.vue b/src/views/space/components/box/dataContent.vue
index 79f9527..5ecaab6 100644
--- a/src/views/space/components/box/dataContent.vue
+++ b/src/views/space/components/box/dataContent.vue
@@ -2,21 +2,23 @@
  * @Author: shuishen 1109946754@qq.com
  * @Date: 2023-03-13 14:54:26
  * @LastEditors: shuishen 1109946754@qq.com
- * @LastEditTime: 2024-11-08 20:17:16
+ * @LastEditTime: 2024-11-15 14:58:23
  * @FilePath: \bigScreen\src\views\space\components\box\dataContent.vue
  * @Description: 
  * 
  * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved. 
 -->
 <script setup>
+import EventBus from 'utils/bus'
+
 import publicContent from "./publicContent.vue"
 import { getList } from "@/api/space/space"
-import { getDictionary } from "@/api/dict/dict"
-import { nextTick, reactive } from "vue"
+import { nextTick, onUnmounted, reactive } from "vue"
 const SeachBarCondition = ref(null)
 const loading = ref(false)
 const TableContent = ref(null)
 const curTableHeight = ref(0)
+const curSelectTabType = ref('')
 
 // 搜索项配置
 const options = reactive({
@@ -32,16 +34,7 @@
       placeholder: '请输入名称',
       changeSearch: true,
       flex: 1,
-    },
-    {
-      label: "类型",
-      type: "select",
-      props: "type",
-      data: [],
-      changeSearch: true,
-      clearable: true,
-      flex: 1,
-    },
+    }
   ]
 })
 
@@ -52,7 +45,7 @@
   total: 0,
 }
 
-function positionColor() {
+function positionColor () {
   return (row) => {
     if (
       (row.X && row.X != 0) ||
@@ -67,7 +60,7 @@
   }
 }
 
-function positionDisabled() {
+function positionDisabled () {
   return (row) => {
     if (
       (row.X && row.X != 0) ||
@@ -86,37 +79,10 @@
   curTableHeight.value = TableContent.value.offsetHeight
 })
 
-watch(
-  () => TableContent,
-  (newData) => {
-    console.log(newData.value?.clientHeight, 456465456)
-  },
-  {
-    immediate: true,
-    deep: true
-  })
-
 // 分页改变
 const handleCurrentChange = (val) => {
   pages.page = val
   getLists(SeachBarCondition.value.getSeachCondition())
-}
-
-// 获取下拉字典
-const getDictData = (code) => {
-  const param = {
-    code: code,
-  }
-  getDictionary(param).then((res) => {
-    options.columns[1].data = res.data.data.map(item => {
-      return {
-        label: item.dictValue,
-        value: item.dictKey
-      }
-    })
-
-    searchBtn(SeachBarCondition.value.getSeachCondition())
-  })
 }
 
 // 查询分页数据
@@ -124,7 +90,10 @@
   param.current = pages.page
   param.size = pages.pageSize
   loading.value = true
-  getList(param)
+  getList({
+    ...param,
+    type: curSelectTabType.value
+  })
     .then((res) => {
       const data = res.data.data
       tableData.value = data.records
@@ -143,28 +112,26 @@
 
 
 // 行点击
-function rowClick(row) {
+function rowClick (row) {
 
-  if (state.layer) {
-    window.$viewer.removeLayer(state.layer)
-  }
-  let layer = new DC.HtmlLayer(`${row.id}`)
-  state.layer = layer
-  window.$viewer.addLayer(layer)
-  let iconEl = `<div class="marsBlueGradientPnl">
-                  <div>${row.name}</div>
-                </div>`
-  let divIcon = new DC.DivIcon(
-    new DC.Position(row.lng, row.lat, 0),
-    `<div class="public-map-popup">
-                    ${iconEl}
-                  </div>`
-  )
-  // divIcon.attrParams = row
-  let incident = () => { }
-  // if (item.incident) incident = item.incident
-  divIcon.on(DC.MouseEventType.CLICK, incident)
-  layer.addOverlay(divIcon)
+  // if (state.layer) {
+  //   window.$viewer.removeLayer(state.layer)
+  // }
+  // let layer = new DC.HtmlLayer(`${row.id}`)
+  // state.layer = layer
+  // window.$viewer.addLayer(layer)
+  // let iconEl = `<div class="marsBlueGradientPnl">
+  //                 <div>${row.name}</div>
+  //               </div>`
+  // let divIcon = new DC.DivIcon(
+  //   new DC.Position(row.lng, row.lat, 0),
+  //   `<div class="public-map-popup">
+  //                   ${iconEl}
+  //                 </div>`
+  // )
+  // let incident = () => { }
+  // divIcon.on(DC.MouseEventType.CLICK, incident)
+  // layer.addOverlay(divIcon)
 
   window.$viewer.flyToPosition(new DC.Position(row.lng, row.lat, 600, 0, -90, 0))
 
@@ -172,7 +139,7 @@
 
 
 // 查看详情
-function goDetail(row) { }
+function goDetail (row) { }
 
 const searchBtn = (params) => {
   resetPage()
@@ -197,15 +164,28 @@
   getLists(SeachBarCondition.value.getSeachCondition())
 }
 
-getDictData("emergency_space_type")
+const spaceTabChange = (type) => {
+  curSelectTabType.value = type
+
+  nextTick(() => {
+    searchBtn(SeachBarCondition.value.getSeachCondition())
+  })
+}
+
+EventBus.on('spaceTabChange', spaceTabChange)
+
+onUnmounted(() => {
+  EventBus.off('spaceTabChange', spaceTabChange)
+})
 </script>
 
 <template>
   <div class="w100 h0 flex-1 flex f-d-c">
-    <global-search :options="options" @searchBtn="searchBtn" @resetBtn="resetBtn" ref="SeachBarCondition"></global-search>
+    <global-search :options="options" @searchBtn="searchBtn" @resetBtn="resetBtn"
+      ref="SeachBarCondition"></global-search>
 
     <div class="h0 flex-1 table-content" ref="TableContent">
-      <el-table :data="tableData" :height="curTableHeight" style="width: 100%" v-loading="loading">
+      <el-table border :data="tableData" :height="curTableHeight" style="width: 100%" v-loading="loading">
         <el-table-column prop="name" label="名称" />
         <el-table-column prop="emergencySpaceType" label="类型" width="70" />
         <el-table-column prop="mainFuncName" label="作用" width="60" />

--
Gitblit v1.9.3