From ecdffd165cf73c0e3c051c69d1dfdc71ba9331c8 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 26 Nov 2024 01:18:01 +0800
Subject: [PATCH] 突发事件模拟调整

---
 src/views/rt/components/box/dataContent.vue |   16 ++++++++++------
 1 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/src/views/rt/components/box/dataContent.vue b/src/views/rt/components/box/dataContent.vue
index 2f0b525..083443a 100644
--- a/src/views/rt/components/box/dataContent.vue
+++ b/src/views/rt/components/box/dataContent.vue
@@ -127,8 +127,8 @@
 
         <div class="page_box">
 
-          <el-table v-if="formInline.type == 1" :data="tableData" style="width: 100%" :header-cell-style="headerCellStyle"
-            :cell-style="tableCellStyle">
+          <el-table border empty-text="" v-if="formInline.type == 1" :data="tableData" style="width: 100%"
+            :header-cell-style="headerCellStyle" :cell-style="tableCellStyle">
             <el-table-column prop="teamName" label="救援队伍组名称" />
             <el-table-column prop="teamJob" label="救援队伍组职务" />
             <el-table-column prop="perInCha" label="责任人姓名" />
@@ -136,11 +136,13 @@
             <el-table-column prop="perInChaPho" label="联系电话" />
           </el-table>
 
-          <el-table v-else :data="tableData" style="width: 100%" :header-cell-style="headerCellStyle"
+          <el-table border empty-text="" v-else :data="tableData" style="width: 100%" :header-cell-style="headerCellStyle"
             :cell-style="tableCellStyle">
             <el-table-column prop="firmName" label="企业名称" />
             <el-table-column prop="perInCha" label="责任人姓名" />
             <el-table-column prop="perInChaPho" label="联系电话" />
+            <el-table-column prop="perInChaTwo" label="责任人姓名" />
+            <el-table-column prop="perInChaPhoTwo" label="联系电话" />
           </el-table>
 
         </div>
@@ -164,7 +166,6 @@
 
 .list_box ul {
   display: flex;
-  /* 使用 Flexbox 布局 */
   padding: 0;
   margin: 0;
   list-style: none;
@@ -174,11 +175,14 @@
   padding: 10px;
   margin-right: 10px;
   cursor: pointer;
+  box-shadow: inset 0 0 40px #409eff;
+  border-radius: 10px;
+  margin-bottom: 5px;
 }
 
 .list_box li.active {
-  background-color: rgba(117, 116, 116, 0.3);
-  color: white;
+  // color: #409eff;
+  box-shadow: inset 0 0 100px #2a8ef1;
 }
 
 .page_box {

--
Gitblit v1.9.3