瀏覽代碼

表格数据

citygis-lhh 6 月之前
父節點
當前提交
3f0725f5ec

+ 1 - 0
src/components/map/GisMap.vue

@@ -102,6 +102,7 @@ onMounted(() => {
               drawPointStore.currentSelectName = arg.data[key][0].name;
               drawPointStore.currentSelectId = arg.data[key][0].id;
               drawPointStore.currentDrawPointList = res.data || [];
+              drawPointStore.openBiddingTable = true;
             } else {
               console.log('获取病例轨迹数据错误');
             }

+ 17 - 0
src/service/api/mapRequest.js

@@ -92,3 +92,20 @@ export function updTrajectorPointOnPeopleByOId(params) {
     params: params
   });
 }
+
+//获取所有病例点
+export function getAllSaDian() {
+  return request({
+    url: '/guiji/getAllSaDian',
+    method: 'get'
+  });
+}
+
+//获取所有病例点
+export function getCaseDetailsByBh(params) {
+  return request({
+    url: '/guiji/getCaseDetailsByBh',
+    method: 'get',
+    params: params
+  });
+}

+ 5 - 0
src/stores/drawPointManage.js

@@ -10,7 +10,10 @@ export const useDrawPointStore = defineStore('drawPointStore', () => {
   const currentSelectName = ref('');
   //是否开始标会
   const drawStartStatus = ref(false);
+  const openBiddingTable = ref(false);
 
+  //是否在修改或新增轨迹点位
+  const modifyTrail = ref(false);
   //信息框当前展示点位index
   const infoBoxIndex = ref(0);
 
@@ -56,6 +59,8 @@ export const useDrawPointStore = defineStore('drawPointStore', () => {
     currentSelectName,
     setInfoBoxIndex,
     drawStartStatus,
+    openBiddingTable,
+    modifyTrail,
     pushCurrentDrawPointList,
     setDrawStartStatus,
     modifyCurrentDrawPointList

+ 10 - 1
src/stores/mapStore.js

@@ -5,13 +5,18 @@ import {
   addJuHePoint,
   closePoint,
   stopTrajectory,
-  startBidding
+  startBidding,
+  closeOutputPoint
 } from '@/utils/map/mapOperation.js';
 import { getTrajectorPointOnPeople, getTrajectorPointOnCar } from '@/service/api/mapRequest.js';
+import { useDrawPointStore } from '@/stores/drawPointManage';
 export const useMapStore = defineStore('mapStore', () => {
   //当前病例点位列表
   const currentToolSelectArray = ref(['newAdress', 'touch']);
 
+  //所有病例点位
+  const currentAllPointList = ref([]);
+
   // 会商车绘制列表
   const flowCarList = ref([]);
 
@@ -132,6 +137,9 @@ export const useMapStore = defineStore('mapStore', () => {
       startBidding(false);
       closePoint('drawLine');
       closePoint('drawPoint');
+      closePoint('clickView');
+      useDrawPointStore().modifyTrail = false;
+      closeOutputPoint();
     } else if (value == 'flowCar') {
       flowCarList.value.forEach((item) => {
         stopTrajectory(item);
@@ -147,6 +155,7 @@ export const useMapStore = defineStore('mapStore', () => {
   return {
     currentToolSelectArray,
     flowCarList,
+    currentAllPointList,
     pushFlowCarList,
     delFlowCarList,
     setCurrentToolSelectArray,

+ 47 - 3
src/utils/map/mapOperation.js

@@ -109,7 +109,7 @@ export function addJuHePoint(name, data, params) {
 }
 
 // 简单打点
-export function addPoint(data, name) {
+export function addPoint(data, name, params) {
   invokeParams('ShowData', {
     name: name,
     data: {
@@ -125,10 +125,10 @@ export function addPoint(data, name) {
       symbol: {
         type: 'simple-marker',
         size: 10,
-        color: 'rgba(0,128,255,0.4)',
+        color: params?.color || 'rgba(0,128,255,0.4)',
         outline: {
           width: 0.5,
-          color: '#0080FF'
+          color: params?.barderColor || 'rgba(0,128,255,0.8)'
         }
       }
     }
@@ -501,3 +501,47 @@ export function gotoPosition(point) {
     isRotation360: false
   });
 }
+
+//区边界
+export function regionZone() {
+  invokeParams('goToPosition', {
+    name: 'car_layer',
+    type: 'layer',
+    isLocate: true,
+    isHighlight: true,
+    highLight: {
+      color: 'blue'
+    },
+    camera: {
+      tilt: 0,
+      heading: 0
+    },
+    data: {
+      layers: {
+        name: '区县边界'
+      }
+    },
+    labels: [
+      {
+        fields: ['#.名称', '#.序号'],
+        color: [255, 255, 0, 0.5],
+        size: 12
+      }
+    ],
+    renderer: {
+      type: 'simple',
+      symbol: {
+        type: 'line-3d',
+        symbolLayers: [
+          {
+            type: 'line',
+            size: 5,
+            material: {
+              color: 'red'
+            }
+          }
+        ]
+      }
+    }
+  });
+}

+ 33 - 13
src/views/DataCenterGis/components/LeftMap.vue

@@ -7,15 +7,21 @@
       <GisMap />
       <Tools></Tools>
 
-      <div class="table-container" v-if="mapStore.currentToolSelectArray.includes('Bidding')">
+      <div
+        class="table-container"
+        v-if="
+          mapStore.currentToolSelectArray.includes('Bidding') && drawPointStore.openBiddingTable
+        "
+      >
         <div class="top-box">
           <span>患者: {{ drawPointStore.currentSelectName }}</span>
           <span>编号: {{ drawPointStore.currentSelectId }}</span>
-          <el-button class="add-box" type="primary" @click="tableAdd">新增</el-button>
+          <div class="add-box">
+            <el-button type="primary" @click="tableAdd">新增</el-button>
+            <el-button type="primary" @click="tableClose">关闭</el-button>
+          </div>
         </div>
         <el-table :data="drawPointStore.currentDrawPointList">
-          <el-table-column show-overflow-tooltip label="点位:x" prop="x" min-width="60" />
-          <el-table-column show-overflow-tooltip label="点位:y" prop="y" min-width="60" />
           <el-table-column show-overflow-tooltip label="时间" prop="date" min-width="60" />
           <el-table-column show-overflow-tooltip label="地点" prop="address" min-width="60" />
           <el-table-column show-overflow-tooltip label="描述" prop="described" min-width="60" />
@@ -39,7 +45,7 @@
         </el-table>
       </div>
 
-      <div class="search-container" v-if="modifyTrail">
+      <div class="search-container" v-if="drawPointStore.modifyTrail">
         <div class="search-box">
           <el-input
             v-model="searchParam"
@@ -76,7 +82,7 @@
         </div>
       </div>
 
-      <div class="info-container" v-if="modifyTrail">
+      <div class="info-container" v-if="drawPointStore.modifyTrail">
         <el-form>
           <el-form-item class="index-box" label="序号">
             {{ drawPointStore.infoBoxIndex }}</el-form-item
@@ -133,7 +139,7 @@
         </div>
       </div>
 
-      <div class="info-button" v-if="modifyTrail">
+      <div class="info-button" v-if="drawPointStore.modifyTrail">
         <!-- <el-button type="primary" v-if="!drawPointStore.drawStartStatus" @click="startDrawLine"
           >开始画线</el-button
         > -->
@@ -231,10 +237,14 @@ const addressInput = async () => {
   }
 };
 
-//是否在修改或新增轨迹点位
-const modifyTrail = ref(false);
+//关闭表格
+const tableClose = async () => {
+  drawPointStore.modifyTrail = false;
+  drawPointStore.openBiddingTable = false;
+};
+
 const tableAdd = async () => {
-  modifyTrail.value = true;
+  drawPointStore.modifyTrail = true;
   startOutputPoint(true);
   const newTime = new Date();
   const data = {
@@ -267,7 +277,7 @@ const handleView = (scope) => {
   date.value = drawPointStore.currentDrawPointList[index]?.date || '';
   address.value = drawPointStore.currentDrawPointList[index]?.address || '';
   described.value = drawPointStore.currentDrawPointList[index].described || '';
-  modifyTrail.value = true;
+  drawPointStore.modifyTrail = true;
   startOutputPoint(true);
   gotoPosition({
     x: row.x,
@@ -344,7 +354,7 @@ const handleSave = async () => {
 };
 
 const handleClose = () => {
-  modifyTrail.value = false;
+  drawPointStore.modifyTrail = false;
   closeOutputPoint();
   getCurrentData();
 };
@@ -454,9 +464,19 @@ const nextPoint = () => {
           margin-right: 10px;
         }
         .add-box {
-          width: 40px;
+          display: flex;
+          justify-content: flex-start;
           height: 30px;
+          width: 85px;
           margin-left: auto;
+          .el-button {
+            margin-right: 5px;
+            width: 40px;
+            height: 30px;
+            span {
+              margin-right: 0;
+            }
+          }
         }
       }
       :deep(.el-table) {

+ 270 - 54
src/views/DataCenterGis/components/RightPanel.vue

@@ -13,69 +13,144 @@
         <div class="charts-box" id="rightChartId" ref="rightChartId"></div>
       </div>
     </div>
-    <div class="title-box">
-      <titleContent>发热门诊病例分区</titleContent>
-    </div>
-    <div class="partition-box">
-      <div
-        class="partition-card"
-        v-for="(key, index) in Object.keys(partitionData)"
-        :key="index + key + ''"
-      >
-        <div class="title">{{ key }}</div>
-        <template v-for="(childKey, index1) in Object.keys(partitionData[key])" :key="index1">
-          <template v-if="childKey == 'infection'">
-            <div class="text-box">
-              <span>传染病</span>
-              <span class="num">{{ partitionData[key][childKey][0].num }}</span>
-            </div>
-          </template>
-          <template v-else-if="childKey == 'fever'">
-            <div class="text-box">
-              <span>发热</span> <span class="num">{{ partitionData[key][childKey][0].num }}</span>
-            </div>
-          </template>
-          <template v-else-if="childKey == 'fuzong'">
-            <div class="text-box text-box-border">
-              <span>腹综</span>
-              <span class="num">{{ getSum(partitionData[key][childKey]) }}</span>
-            </div>
-            <div
-              class="text-box text-child-box"
-              v-for="(item, index2) in partitionData[key][childKey]"
-              :key="index2"
-            >
-              <span>{{ item.type }}</span>
-              <span class="num">{{ partitionData[key][childKey][0].num }}</span>
-            </div>
-          </template>
-          <template v-else-if="childKey == 'cold'">
-            <div class="text-box">
-              <span>感冒</span>
-              <span class="num">{{ getSum(partitionData[key][childKey]) }}</span>
-            </div>
-            <div
-              class="text-box text-child-box"
-              v-for="(item, index2) in partitionData[key][childKey]"
-              :key="index2"
-            >
-              <span>{{ item.type }}</span>
-              <span class="num">{{ partitionData[key][childKey][0].num }}</span>
-            </div>
+    <template v-if="!mapStore.currentToolSelectArray.includes('Bidding')">
+      <div class="title-box">
+        <titleContent>发热门诊病例分区</titleContent>
+      </div>
+      <div class="partition-box">
+        <div
+          class="partition-card"
+          v-for="(key, index) in Object.keys(partitionData)"
+          :key="index + key + ''"
+        >
+          <div class="title">{{ key }}</div>
+          <template v-for="(childKey, index1) in Object.keys(partitionData[key])" :key="index1">
+            <template v-if="childKey == 'infection'">
+              <div class="text-box">
+                <span>传染病</span>
+                <span class="num">{{ partitionData[key][childKey][0].num }}</span>
+              </div>
+            </template>
+            <template v-else-if="childKey == 'fever'">
+              <div class="text-box">
+                <span>发热</span> <span class="num">{{ partitionData[key][childKey][0].num }}</span>
+              </div>
+            </template>
+            <template v-else-if="childKey == 'fuzong'">
+              <div class="text-box text-box-border">
+                <span>腹综</span>
+                <span class="num">{{ getSum(partitionData[key][childKey]) }}</span>
+              </div>
+              <div
+                class="text-box text-child-box"
+                v-for="(item, index2) in partitionData[key][childKey]"
+                :key="index2"
+              >
+                <span>{{ item.type }}</span>
+                <span class="num">{{ partitionData[key][childKey][0].num }}</span>
+              </div>
+            </template>
+            <template v-else-if="childKey == 'cold'">
+              <div class="text-box">
+                <span>感冒</span>
+                <span class="num">{{ getSum(partitionData[key][childKey]) }}</span>
+              </div>
+              <div
+                class="text-box text-child-box"
+                v-for="(item, index2) in partitionData[key][childKey]"
+                :key="index2"
+              >
+                <span>{{ item.type }}</span>
+                <span class="num">{{ partitionData[key][childKey][0].num }}</span>
+              </div>
+            </template>
           </template>
-        </template>
+        </div>
       </div>
-    </div>
+    </template>
+    <template v-else>
+      <div class="title-box">
+        <titleContent>病例列表</titleContent>
+      </div>
+      <div class="table-container">
+        <el-table
+          :data="mapStore.currentAllPointList"
+          @row-click="handleView"
+          @row-dblclick="handleDbView({ scoped })"
+        >
+          <el-table-column label="序号" align="center" type="index" width="50" />
+          <el-table-column
+            show-overflow-tooltip
+            align="center"
+            label="病例编号"
+            prop="blbh"
+            min-width="60"
+          >
+            <template #default="scope">
+              <div @click="clickBlbh(scope)" style="color: #1257bc">{{ scope.row.blbh }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column show-overflow-tooltip align="center" label="图标" prop="" min-width="60">
+            <template #default="scope">
+              <div
+                v-if="scope.row.ty == '无轨迹'"
+                class="point-box"
+                style="background: rgba(255, 127, 0, 0.8)"
+              ></div>
+              <div
+                v-if="scope.row.ty == '有轨迹'"
+                class="point-box"
+                style="background: rgba(0, 128, 255, 0.8)"
+              ></div>
+              <div
+                v-if="scope.row.ty == '无坐标'"
+                class="point-box"
+                style="background: rgba(248, 152, 152, 0.8)"
+              ></div>
+            </template>
+          </el-table-column>
+          <el-table-column show-overflow-tooltip label="疾病名称" prop="type" min-width="60">
+            <template #default="scope">
+              <span v-if="scope.row.type == 1">传染病</span>
+              <span v-if="scope.row.type == 2">发热</span>
+              <span v-if="scope.row.type == 3">腹综</span>
+              <span v-if="scope.row.type == 4">感冒</span>
+            </template>
+          </el-table-column>
+          <el-table-column show-overflow-tooltip label="流调情况" prop="ty" min-width="60">
+          </el-table-column>
+          <!-- <el-table-column fixed="right" label="操作" min-width="40">
+                <template #default="scoped">
+                  <el-button class="option-button" @click="handleView(scoped)" type="text"
+                    >查看</el-button
+                  >
+                </template>
+              </el-table-column> -->
+        </el-table>
+      </div>
+    </template>
   </div>
 </template>
 
 <script setup>
-import { onMounted, ref } from 'vue';
+import { computed, onMounted, ref } from 'vue';
 import titleContent from './TitleContent.vue';
 import * as echarts from 'echarts';
-import { getDataByArea, getHistogramData } from '@/service/api/mapRequest';
+import {
+  getDataByArea,
+  getHistogramData,
+  getTrajectorPointOnPeople,
+  getTrajectorPointOnPeopleById,
+  getCaseDetailsByBh,
+  getAllSaDian
+} from '@/service/api/mapRequest';
 import { stackRightOptions, stackLeftOptions } from '@/utils/chartsOptions.js';
+import { useMapStore } from '@/stores/mapStore.js';
+import { useDrawPointStore } from '@/stores/drawPointManage.js';
+import { addPoint } from '@/utils/map/mapOperation.js';
 const partitionData = ref({});
+const mapStore = useMapStore();
+const drawPointStore = useDrawPointStore();
 
 const leftChartId = ref('');
 const rightChartId = ref('');
@@ -153,6 +228,56 @@ const getBarData = async () => {
   }
 };
 
+const activeName = ref('1');
+
+const handleClick = () => {};
+
+const clickBlbh = async (scope) => {
+  try {
+    const row = scope.row;
+    const res = await getTrajectorPointOnPeopleById({
+      bh: row.blbh,
+      type: row.type
+    });
+    if (res.code == 200) {
+    } else {
+      console.log('获取病例详情数据错误');
+    }
+  } catch (error) {
+    console.log(error);
+  }
+};
+
+const handleView = (row) => {
+  if (row?.x && row?.y) {
+    let color = row.ty == '有轨迹' ? 'rgba(0, 128, 255, 0.5)' : 'rgba(255, 127, 0, 0.5)';
+    let borderColor = row.ty == '有轨迹' ? 'rgba(0, 128, 255, 0.9)' : 'rgba(255, 127, 0, 0.9)';
+    addPoint([{ x: row.x, y: row.y }], 'clickView', {
+      color: color,
+      borderColor: borderColor
+    });
+  }
+};
+
+const handleDbView = async (scope) => {
+  try {
+    const row = scope.row;
+    const res = await getTrajectorPointOnPeopleById({
+      id: row.id
+    });
+    if (res.code == 200) {
+      drawPointStore.currentSelectName = row.name;
+      drawPointStore.currentSelectId = row.id;
+      drawPointStore.currentDrawPointList = res.data || [];
+      drawPointStore.openBiddingTable = true;
+    } else {
+      console.log('获取病例轨迹数据错误');
+    }
+  } catch (error) {
+    console.log(error);
+  }
+};
+
 //分区看板
 const getLeftChartData = async () => {
   try {
@@ -205,13 +330,36 @@ const getSum = (numArr) => {
       return pre + next;
     });
 };
+
+const getAllPoint = async () => {
+  try {
+    const res = await getAllSaDian();
+    if (res.code == 200) {
+      let arr = [];
+      Object.keys(res.data).forEach((key) => {
+        if (key == '有轨迹') {
+          arr = [...res.data[key], ...arr];
+        } else {
+          arr = [...arr, ...res.data[key]];
+        }
+      });
+
+      mapStore.currentAllPointList = arr;
+    } else {
+      throw 'getTrajectorPointOnPeople:error';
+    }
+  } catch (error) {
+    console.log(error);
+  }
+};
 onMounted(() => {
   getLeftChartData();
   getBarData();
+  getAllPoint();
 });
 </script>
 
-<style lang="scss">
+<style lang="scss" scoped>
 .right-Panel-container {
   .title-container {
     background-image: url('@/assets/image/message-bg.png');
@@ -297,5 +445,73 @@ onMounted(() => {
       }
     }
   }
+  .table-container {
+    width: 100%;
+    height: 600px;
+    background: rgba(0, 0, 0, 0);
+    box-shadow: 0px 4px 5px #cccccc;
+    margin-top: 25px;
+    overflow: hidden;
+    .option-button {
+      width: 30px;
+    }
+    .top-box {
+      display: flex;
+      justify-content: flex-start;
+      padding-right: 20px;
+      span {
+        margin-right: 10px;
+      }
+      .add-box {
+        width: 40px;
+        height: 30px;
+        margin-left: auto;
+      }
+    }
+    :deep(.el-table) {
+      height: calc(100% - 30px);
+      background: rgba(0, 0, 0, 0);
+      .cell {
+        padding: 0;
+      }
+      .el-table__cell {
+        padding: 5px 3px;
+      }
+      .el-button + .el-button {
+        margin-left: 5px;
+      }
+      tr,
+      td {
+        background-color: unset;
+      }
+
+      th {
+        background-color: rgba(90, 172, 255, 0.5);
+        color: #ffffff;
+      }
+    }
+    .table-row-head,
+    .table-row-box {
+      display: flex;
+      justify-content: space-evenly;
+      align-items: center;
+      height: 25px;
+      font-size: 14px;
+      .table-td {
+        flex: 1;
+        text-align: center;
+      }
+    }
+    // .table-row-head {
+    //   background-color: #dde2eb;
+    // }
+    .table-row-box {
+    }
+  }
+}
+.point-box {
+  width: 20px;
+  height: 20px;
+  border-radius: 50px;
 }
 </style>