From e79d2888cc8f21dd9e9a2addfd33a8b2871abef6 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Fri, 15 Nov 2024 19:35:22 +0800
Subject: [PATCH] 突发事件模拟调整

---
 src/views/space/components/box/dataContent.vue |   15 ++++++++-------
 1 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/src/views/space/components/box/dataContent.vue b/src/views/space/components/box/dataContent.vue
index b40461b..5ecaab6 100644
--- a/src/views/space/components/box/dataContent.vue
+++ b/src/views/space/components/box/dataContent.vue
@@ -2,7 +2,7 @@
  * @Author: shuishen 1109946754@qq.com
  * @Date: 2023-03-13 14:54:26
  * @LastEditors: shuishen 1109946754@qq.com
- * @LastEditTime: 2024-11-12 18:31:08
+ * @LastEditTime: 2024-11-15 14:58:23
  * @FilePath: \bigScreen\src\views\space\components\box\dataContent.vue
  * @Description: 
  * 
@@ -45,7 +45,7 @@
   total: 0,
 }
 
-function positionColor() {
+function positionColor () {
   return (row) => {
     if (
       (row.X && row.X != 0) ||
@@ -60,7 +60,7 @@
   }
 }
 
-function positionDisabled() {
+function positionDisabled () {
   return (row) => {
     if (
       (row.X && row.X != 0) ||
@@ -112,7 +112,7 @@
 
 
 // 行点击
-function rowClick(row) {
+function rowClick (row) {
 
   // if (state.layer) {
   //   window.$viewer.removeLayer(state.layer)
@@ -139,7 +139,7 @@
 
 
 // 查看详情
-function goDetail(row) { }
+function goDetail (row) { }
 
 const searchBtn = (params) => {
   resetPage()
@@ -181,10 +181,11 @@
 
 <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