Browse Source

节点详情弹窗

hm 1 week ago
parent
commit
5545df2642

BIN
src/assets/img/弹框-大.png


BIN
src/assets/img/弹框-小.png


BIN
src/assets/img/按钮-短.png


BIN
src/assets/img/浅色-短.png


BIN
src/assets/img/浅色-长.png


BIN
src/assets/img/深色-短.png


BIN
src/assets/img/深色-长.png


BIN
src/assets/img/表格发光线-长.png


BIN
src/assets/img/表格发光线短.png


+ 10 - 1
src/store/dialog.js

@@ -11,6 +11,8 @@ export const useDialogStore = defineStore('dialog', {
       riskAIDialogOpen2: false,   // 存储动态评估弹窗开关
 
       caseManageNodeDialogOpen: false,   // 存储病例管理节点弹窗开关
+      caseDetailDiaogOpen: false, // 存储病例管理检测节点弹窗开关
+
       laboratoryTestNodeDialogOpen: false,   // 存储实验室检测节点弹窗开关
 
       // 公共卫生风险及地图图例 下拉选项
@@ -97,7 +99,6 @@ export const useDialogStore = defineStore('dialog', {
       return this.caseManageNodeDialogOpen
     },
 
-    // 实验室检测
     setLaboratoryTestNodeDialogOpen (open) {
       this.laboratoryTestNodeDialogOpen = open
     },
@@ -105,6 +106,14 @@ export const useDialogStore = defineStore('dialog', {
       return this.laboratoryTestNodeDialogOpen
     },
 
+    // 实验室检测
+    setCaseDetailDiaogOpen (open) {
+      this.caseDetailDiaogOpen = open
+    },
+    getcaseDetailDiaogOpen () {
+      return this.caseDetailDiaogOpen
+    },
+
     // 弹窗统一关闭
     closeAllDialog () {
       // this.riskPersonnelDialogOpen = false

+ 17 - 20
src/views/left/dialog/PublicHealthRisksDialog.vue

@@ -9,7 +9,7 @@
         <el-option v-for="item in riskTypeOptions" :key="item.value" :label="item.label" :value="item.value" />
       </el-select> -->
 
-      <el-date-picker v-model="dialogStore.selectSearchObj.time" type="date" placeholder="请选择日期" size="small" popper-class="date_picker_custom-class" ></el-date-picker>
+      <el-date-picker v-model="dialogStore.selectSearchObj.time" type="date" placeholder="请选择日期" size="small" popper-class="date_picker_custom-class"></el-date-picker>
       <el-select v-model="dialogStore.selectSearchObj.status" placeholder="状态" popper-class="custom-select">
         <el-option v-for="item in dialogStore.riskStatusOptions" :key="item.value" :label="item.label" :value="item.value" />
       </el-select>
@@ -67,7 +67,7 @@ const tableData = ref([
     name: '22',
     address: 'No. 189, Grove St, Los Angeles'
   },
-    {
+  {
     date: '浦东新区',
     name: '22',
     address: 'No. 189, Grove St, Los Angeles'
@@ -87,7 +87,7 @@ const tableData = ref([
     name: '22',
     address: 'No. 189, Grove St, Los Angeles'
   },
-    {
+  {
     date: '浦东新区',
     name: '22',
     address: 'No. 189, Grove St, Los Angeles'
@@ -107,7 +107,7 @@ const tableData = ref([
     name: '22',
     address: 'No. 189, Grove St, Los Angeles'
   },
-    {
+  {
     date: '浦东新区',
     name: '22',
     address: 'No. 189, Grove St, Los Angeles'
@@ -127,7 +127,7 @@ const tableData = ref([
     name: '22',
     address: 'No. 189, Grove St, Los Angeles'
   },
-    {
+  {
     date: '浦东新区',
     name: '22',
     address: 'No. 189, Grove St, Los Angeles'
@@ -146,7 +146,7 @@ const tableData = ref([
     date: '浦东新区',
     name: '22',
     address: 'No. 189, Grove St, Los Angeles'
-  },
+  }
 ])
 
 // function rowStyle () {
@@ -205,9 +205,17 @@ function handleRowClick() {}
   height: 0;
 }
 
-:deep(  .el-select__wrapper) {
+:deep(.el-select__wrapper) {
   min-height: 24px !important;
 }
+
+:deep(.el-table) {
+  tr {
+    background-color: rgba(0, 170, 255, 0.15) !important;
+    font-weight: 400 !important;
+  }
+}
+
 </style>
 <style lang="scss">
 //下拉框文字
@@ -236,8 +244,6 @@ function handleRowClick() {}
   color: #ffffff !important;
 }
 
-
-
 //下拉框的链接小方块
 .custom-select.el-popper[data-popper-placement^='bottom'] .el-popper__arrow::before {
   // background: rgba(1, 28, 82, 0.8) !important;
@@ -254,7 +260,6 @@ function handleRowClick() {}
 
 //鼠标移动上去的选中色
 .custom-select {
-
   .el-select-dropdown__item.is-hovering {
     background: linear-gradient(270deg, rgba(6, 195, 255, 0.1) 0%, rgba(6, 195, 255, 0.68) 100%) !important;
     border-radius: 2px 2px 2px 2px;
@@ -293,11 +298,6 @@ function handleRowClick() {}
   // color: #ffffff;
 }
 
-.el-table tr {
-  background-color: rgba(0, 170, 255, 0.15) !important;
-  font-weight: 400 !important;
-}
-
 .dialog_table .yellow-text {
   color: #ffd15c !important;
   // background: rgba(0, 170, 255, 0.15) !important
@@ -359,7 +359,7 @@ function handleRowClick() {}
 .date_picker_custom-class {
   // background-color: #2c2c2c !important;
   background-color: #214370 !important;
-  
+
   border: 1px solid #1d85a9 !important;
   color: #fff !important;
 }
@@ -383,9 +383,8 @@ function handleRowClick() {}
   display: none !important;
 }
 
-
 .el-date-picker__header-label {
-   color: #fff !important;
+  color: #fff !important;
 }
 /* 针对面板内容区域 */
 .date_picker_custom-class .el-picker-panel__body {
@@ -410,6 +409,4 @@ function handleRowClick() {}
   background-color: #214370;
   color: #fff;
 }
-
-
 </style>

+ 7 - 0
src/views/left/dialog/components/DisposalListContent.vue

@@ -55,6 +55,13 @@ function handleRowClick() {
   height: 734px;
 }
 
+:deep(.el-table) {
+  tr {
+    background-color: rgba(0, 170, 255, 0.15) !important;
+    font-weight: 400 !important;
+  }
+}
+
     // 表格行间距
 :deep(.el-table__body) {
   -webkit-border-vertical-spacing: 6px;

+ 286 - 2
src/views/left/dialog/components/dialog/CaseDetailDiaog.vue

@@ -1,12 +1,296 @@
 <template>
-  <div class="container">
+  <div class="case_detail_container">
+    <div class="dialog_container_header">
+      <div class="dialog_container_header_title">详情</div>
+      <div class="img_close" @click="handleClose">
+        <img src="../../../../../assets/img/弹窗关闭.png" alt="close" />
+      </div>
+    </div>
 
+    <div class="case_detail_body">
+      <!-- <div>
+        <div class="title">
+          病例编号
+          <span class="symbol">:</span>
+        </div>
+        <span>XXXXXXXXXXXXXXXXXXXX</span>
+      </div>
+      <div>
+        <div class="title spacing">
+          姓 名
+          <span class="symbol2">:</span>
+        </div>
+        <span>XXX</span>
+      </div>
+      <div>
+        <div class="title">
+          身份证号
+          <span class="symbol">:</span>
+        </div>
+        <span>XXXXXXXXXXXXXXXXXXXX</span>
+      </div>
+      <div>
+        <div class="title">
+          联系电话
+          <span class="symbol">:</span>
+        </div>
+        <span>13018230914</span>
+      </div>
+      <div>
+        <div class="title">
+          隔离位置
+          <span class="symbol">:</span>
+        </div>
+        <span>XXXXXXXXXXXXXXXXXXXX</span>
+      </div>
+      <div>
+        <div class="title">
+          隔离时间
+          <span class="symbol">:</span>
+        </div>
+        <span>2024-10-01 08:00</span>
+      </div>
+      <div>
+        <div class="title spacing">
+          体 温
+          <span class="symbol2">:</span>
+        </div>
+        <span>37.3°</span>
+      </div>
+      <div>
+        <div class="title spacing">
+          心 率
+          <span class="symbol2">:</span>
+        </div>
+        <span>110次/分</span>
+      </div>
+      <div>
+        <div class="title spacing">
+          血 压
+          <span class="symbol2">:</span>
+        </div>
+        <span>120mmHg</span>
+      </div>
+      <div>
+        <div class="title spacing">
+          姓 名
+          <span class="symbol2">:</span>
+        </div>
+        <span>XXX</span>
+      </div>
+      <div>
+        <div class="title">
+          病例类型
+          <span class="symbol">:</span>
+        </div>
+        <span>肺炎</span>
+      </div>
+      <div>
+        <div class="title">
+          密接人员
+          <span class="symbol">:</span>
+        </div>
+        <span>15人</span>
+      </div>
+      <div>
+        <div class="title">
+          风险场所
+          <span class="symbol">:</span>
+        </div>
+        <span>6个</span>
+      </div>
+      <div>
+        <div class="title spacing">
+          轨 迹
+          <span class="symbol2">:</span>
+        </div>
+        <div class="btn">查看轨迹</div>
+      </div>
+      <div>
+        <div class="title spacing">
+          分 析
+          <span class="symbol2">:</span>
+        </div>
+        <div class="btn">模型分析</div>
+      </div> -->
+
+        <template v-for="(item, index) in displayItems" :key="index">
+        <div>
+          <div class="title" :class="{ spacing: item.spacing }">
+            {{ item.label }}
+            <span :class="item.spacing ? 'symbol2' : 'symbol'">:</span>
+          </div>
+          <span v-if="!item.isButton">{{ item.value }}</span>
+          <div v-else class="btn">{{ item.value }}</div>
+        </div>
+      </template>
+    </div>
+
+    <!-- 折叠/展开按钮 -->
+      <div class="collapse-box">
+      <div class="icon-box" :class="{ 'up-icon': expendFlag }" @click="toggleShow"></div>
+      <span class="text-box" @click="toggleShow">{{ !expendFlag ? '展开' : '收起' }}</span>
+    </div>
   </div>
 </template>
 <script setup>
-import { ref, watch, computed , reactive, toRefs, onBeforeMount, onMounted } from 'vue'
+import { ref, watch, computed, reactive, toRefs, onBeforeMount, onMounted } from 'vue'
+import { useDialogStore } from '@/store/dialog'
+let dialogStore = useDialogStore()
+
+const expendFlag = ref(false)
+
+// 数据源
+const items = ref([
+  { label: '病例编号', value: 'XXXXXXXXXXXXXXXXXXXX' },
+  { label: '姓 名', value: 'XXX', spacing: true },
+  { label: '身份证号', value: 'XXXXXXXXXXXXXXXXXXXX' },
+  { label: '联系电话', value: '13018230914' },
+  { label: '隔离位置', value: 'XXXXXXXXXXXXXXXXXXXX' },
+  { label: '隔离时间', value: '2024-10-01 08:00' },
+  { label: '体 温', value: '37.3°', spacing: true },
+  { label: '心 率', value: '110次/分', spacing: true },
+  { label: '血 压', value: '120mmHg', spacing: true },
+  { label: '病例类型', value: '肺炎' },
+  { label: '密接人员', value: '15人' },
+  { label: '风险场所', value: '6个' },
+  { label: '轨 迹', value: '查看轨迹', isButton: true, spacing: true },
+  { label: '分 析', value: '模型分析', isButton: true, spacing: true }
+])
+
+// 计算属性:根据状态切换显示数据
+const displayItems = computed(() => (expendFlag.value ? items.value : items.value.slice(0, 5)))
+
+// 切换折叠/展开
+const toggleShow = () => {
+  expendFlag.value = !expendFlag.value
+}
+
+// 关闭弹窗
+const handleClose = () => {
+  dialogStore.setCaseDetailDiaogOpen(false)
+}
 
 </script>
 <style lang="scss" scoped>
+.case_detail_container {
+  width: 327px;
+  max-height: 510px;
+  position: absolute;
+  right: -342px;
+  top: 0px;
+  background: url(../../../../../assets/img/大面板.png) no-repeat;
+}
+.dialog_container_header {
+  display: flex;
+  align-items: center;
+  justify-content: space-between;
+  height: 55px;
+  width: 100%;
+  padding: 0 20px;
+  box-sizing: border-box;
+  font-family: Alimama ShuHeiTi;
+  font-weight: bold;
+  font-size: 24px;
+  color: rgba(255, 255, 255, 0);
+  background: linear-gradient(0deg, #8b9bb5 0%, #d7e4fc 20.01953125%, #ffffff 87.3291015625%, #6b84b0 99.5849609375%);
+  -webkit-background-clip: text;
+}
+
+.case_detail_body {
+  width: 100%;
+  height: calc(100% - 55px);
+  padding: 10px 0 0px 20px;
+  box-sizing: border-box;
+
+  > div {
+    display: flex;
+    align-items: center;
+    font-family: Alibaba PuHuiTi;
+    font-weight: 500;
+    font-size: 16px;
+    color: #ffffff;
+    line-height: 28px;
+
+    // 标题部分
+    .title {
+      width: 69px; // 固定宽度
+      display: flex;
+      align-items: center;
+      position: relative;
+      white-space: nowrap;
+      justify-content: space-between;
+
+      // 两个字自动填充空格
+      &.spacing {
+        width: 69px;
+        letter-spacing: 14px; // 控制字间距,保持等距
+      }
+
+      .symbol {
+        position: absolute;
+        top: 0px;
+        right: -5px;
+      }
+      .symbol2 {
+        position: absolute;
+        top: 0px;
+        right: -19px;
+      }
+    }
+
+    // 内容区域
+    span,
+    .btn {
+      // flex: 1;
+      // text-align: left;
+      margin-left: 11px;
+    }
+
+    // 按钮样式
+    .btn {
+      background: url('../../../../../assets/img/按钮-短.png') no-repeat;
+      background-size: 100% 100%;
+      width: 84px;
+      height: 24px;
+      display: flex;
+      justify-content: center;
+      align-items: center;
+      color: #fff;
+      font-size: 14px;
+      cursor: pointer;
+    }
+  }
+}
 
+.collapse-box {
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  width: 100%;
+  height: 50px;
+  .icon-box {
+    width: 20px;
+    height: 20px;
+    background-image: url('@/assets/img/a-shouqi1 1@2x.png');
+    background-size: 100% 100%;
+    transform: rotate(-90deg);
+    cursor: pointer;
+  }
+  .up-icon {
+    transform: rotate(90deg);
+  }
+  .text-box {
+    margin-left: 5px;
+    font-family: Alibaba PuHuiTi;
+    font-weight: normal;
+    font-size: 18px;
+    color: #04fafe;
+    letter-spacing: 1px;
+    text-shadow: 0px 6px 6px rgba(0, 0, 0, 0.25);
+    text-align: left;
+    font-style: normal;
+    text-transform: none;
+  }
+}
 </style>

+ 172 - 83
src/views/left/dialog/components/dialog/CaseManageNodeDialog.vue

@@ -14,18 +14,15 @@
       </div>
     </div>
     <div>
-      <el-select v-model="time" placeholder="日期(轮次)" popper-class="dialog_custom-select">
-        <el-option v-for="item in dialogStore.timeOptions" :key="item.value" :label="item.label" :value="item.value" />
-      </el-select>
+      <el-input v-model="time" placeholder="请输入要查询的内容"></el-input>
+    </div>
+    <div class="tab_box">
+      <div v-for="(item, index) in dialogOptions.buttons" :key="item.id" class="right_btn" :class="{ right_btn_active: btnActiveIndex === index }" @click="handleButtonClick(index)">
+        {{ item.title }}
+      </div>
     </div>
 
-    <el-table
-      :data="dialogOptions.tableData"
-      class="dialog_table"
-      @row-click="handleRowClick"
-      :header-cell-style="{ backgroundColor: 'transparent', color: '#ffffff' }"
-      :row-class-name="tableRowClassName"
-    >
+    <el-table :data="dialogOptions.tableData" class="dialog_table" @row-click="handleRowClick" :row-class-name="tableRowClassName">
       <el-table-column
         v-for="(column, colIndex) in dialogOptions.tableColumns"
         :key="`col_${colIndex}_${column.prop}`"
@@ -37,15 +34,17 @@
         :formatter="column.formatter"
       >
         <!-- 支持自定义列模板 -->
-        <template v-if="column.slot" #default="scope">
+        <!-- <template v-if="column.slot" #default="scope">
           <slot :name="column.slot" :row="scope.row"></slot>
-        </template>
+        </template> -->
       </el-table-column>
     </el-table>
+    <CaseDetailDiaog v-if="dialogStore.caseDetailDiaogOpen"></CaseDetailDiaog>
   </div>
 </template>
 
 <script setup>
+import CaseDetailDiaog from './CaseDetailDiaog'
 import { ref, watch } from 'vue'
 import { useDialogStore } from '@/store/dialog'
 let dialogStore = useDialogStore()
@@ -87,38 +86,47 @@ const emit = defineEmits(['close', 'button-click', 'row-click'])
 
 const dialogOptions = ref({
   imgName: '小标题',
-  title: '检测结果',
+  title: '病例列表',
   activeIndex: 0,
-  buttons: [],
+  buttons: [
+    { id: 0, title: '病例', active: true },
+    { id: 1, title: '密接', active: false },
+    { id: 2, title: '次密接', active: false }
+  ],
   tableColumns: [
     { type: 'index', label: '序号', width: '80' },
-    { prop: 'type', label: '样本分类' },
-    { prop: 'date', label: '日期/轮次' },
-    { prop: 'domeType', label: '样本类型' },
-    { prop: 'samplingNum', label: '采样数' },
-    { prop: 'testNum', label: '检测数' },
-    { prop: 'positiveNum', label: '阳性数' }
+    { prop: 'code', label: '病例编号' },
+    { prop: 'name', label: '姓名' }
   ],
   tableData: [
     // 数据...
-    { type: '病例', date: '-', domeType: '血清', samplingNum: '-', testNum: '-', positiveNum: '-' },
-    { type: '病例', date: '-', domeType: '血清', samplingNum: '-', testNum: '-', positiveNum: '-' },
-    { type: '密接', date: '-', domeType: '血清', samplingNum: '-', testNum: '-', positiveNum: '-' },
-    { type: '密接', date: '-', domeType: '血清', samplingNum: '-', testNum: '-', positiveNum: '-' },
-    { type: '病例', date: '-', domeType: '血清', samplingNum: '-', testNum: '-', positiveNum: '-' },
-    { type: '病例', date: '-', domeType: '血清', samplingNum: '-', testNum: '-', positiveNum: '-' },
-    { type: '密接', date: '-', domeType: '血清', samplingNum: '-', testNum: '-', positiveNum: '-' },
-    { type: '密接', date: '-', domeType: '血清', samplingNum: '-', testNum: '-', positiveNum: '-' },
-    { type: '咽拭子', date: '-', domeType: '-', samplingNum: '-', testNum: '-', positiveNum: '-' },
-    { type: '咽拭子', date: '-', domeType: '-', samplingNum: '-', testNum: '-', positiveNum: '-' },
-    { type: '咽拭子', date: '-', domeType: '-', samplingNum: '-', testNum: '-', positiveNum: '-' },
-    { type: '咽拭子', date: '-', domeType: '-', samplingNum: '-', testNum: '-', positiveNum: '-' },
-    { type: '咽拭子', date: '-', domeType: '-', samplingNum: '-', testNum: '-', positiveNum: '-' },
-    { type: '咽拭子', date: '-', domeType: '-', samplingNum: '-', testNum: '-', positiveNum: '-' },
-    { type: '咽拭子', date: '-', domeType: '-', samplingNum: '-', testNum: '-', positiveNum: '-' },
-  
-
-
+    { code: '18-2024-1207-01-猴痘', name: '张嘉佳' },
+    { code: '05-2024-1207-01-猴痘', name: '孙忆枫' },
+    { code: '31-2024-1207-01-疟疾', name: '杨静云' },
+    { code: '31-2024-1207-01-疟疾', name: '王乐康' },
+    { code: '01-2024-1207-01-猩红热', name: '李怡悦' },
+    { code: '01-2024-1207-01-猩红热', name: '庞慧' },
+    { code: '01-2024-1207-01-猩红热', name: '李书易' },
+    { code: '01-2024-1207-01-猩红热', name: '胡小小' },
+    { code: '01-2024-1207-01-猩红热', name: '周乐心' },
+    { code: '01-2024-1207-01-猩红热', name: '杨松生' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '顾伦' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '王漫' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '尹丽娜' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '池子仪' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '李赫' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '傅彭薄' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '裴谊育' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '鲍业宝' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '黄隆心' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '侯彩蕊' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻04-2024-1207-01-聚集性呕吐腹泻', name: '冯立俏' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '宫臻' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '毛妹莲' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '孔崧谊' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '宁淑曼' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '明忱冶' },
+    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '叶洵歆' }
   ]
 })
 
@@ -132,29 +140,53 @@ const getImgSrc = picName => {
 // 关闭弹窗
 const handleClose = () => {
   // emit('close')
-  dialogStore.setCaseManageNodeDialogOpen(false)
+   dialogStore.setCaseManageNodeDialogOpen(false)
 }
 
 // 表格行点击
 const handleRowClick = row => {
-  emit('row-click', row)
+  // emit('row-click', row)
+   dialogStore.setCaseDetailDiaogOpen(true)
+}
+
+// 按钮点击处理
+const handleButtonClick = index => {
+  btnActiveIndex.value = index
+  // emit('button-click', {
+  //   index,
+  //   button: props.options.buttons[index]
+  // })
 }
 
 const tableRowClassName = ({ row, rowIndex }) => {
-  return rowIndex % 2 === 0 ? 'single-row' : 'double-row'
+  console.log(rowIndex, 'rowIndex')
+  // if (rowIndex===0) {
+  //   return 'g_single-row'
+  // }
+  // if (rowIndex!==0&&rowIndex % 2 === 0) {
+  //   return 'single-row'
+  // } else if (rowIndex!==0 && rowIndex % 2 !== 0) {
+  //   return 'double-row'
+  // }
+  // return rowIndex % 2 === 0 ? 'single-row' : 'double-row'
+
+  if (rowIndex === 0) {
+    return 'single-row'
+  }
+  return rowIndex % 2 === 0 ? 'double-row' : ''
 }
 </script>
 
 <style lang="scss" scoped>
 .dialog_container {
   position: absolute;
-  right: -580px;
-  top: 0px;
-  width: 582px;
+  right: -410px;
+  top: 10px;
+  width: 396px;
   height: 768px;
-  background: url(../../../../../assets/img/弹框-大.png) no-repeat;
+  background: url(../../../../../assets/img/弹框-.png) no-repeat;
   background-size: 100% 100%;
-  padding: 40px 50px;
+  padding: 20px;
   box-sizing: border-box;
   // background-color: #fff;
 }
@@ -187,48 +219,47 @@ const tableRowClassName = ({ row, rowIndex }) => {
   }
 }
 
-.dialog_container_header_btn {
-  display: flex;
-  align-items: center;
-}
-
-.btn_box {
+.tab_box {
   width: 100%;
   display: flex;
-  // justify-content: end;
   align-items: center;
-  // margin-right: 30px;
-  // margin-top: 6px;
+  justify-content: space-between;
+  height: 60px;
+  padding: 0 30px;
+  box-sizing: border-box;
 }
 
 .right_btn {
-  padding: 0 5px;
-  box-sizing: border-box;
-  height: 24px;
-  border-radius: 4px 4px 4px 4px;
-  border: 1px solid rgba(111, 229, 255, 0.3);
-  font-family: Alibaba PuHuiTi 3;
-  font-weight: normal;
-  font-size: 14px;
-  color: #ffffff;
-  line-height: 24px;
-  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
-  text-align: center;
-  font-style: normal;
-  text-transform: none;
-  margin-left: 10px;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  // padding: 0 10px;
+  font-family: Alimama ShuHeiTi;
+  font-weight: bold;
+  color: #8dbfee;
+  font-style: italic;
+  background: linear-gradient(0deg, rgba(239, 251, 255, 0.34) 0%, rgba(0, 0, 0, 0.34) 11.9140625%, rgba(255, 254, 254, 0.34) 100%);
+  opacity: 0.85;
+  -webkit-background-clip: text;
+  // margin-right: 20px;
 }
 
 .right_btn_active {
-  background: linear-gradient(90deg, #59a7da 0%, rgba(22, 116, 178, 0) 100%);
-  border-radius: 4px 4px 4px 4px;
-  border: 1px solid #6fe5ff;
-  font-family: Alibaba PuHuiTi 3;
-  font-weight: normal;
-  font-size: 14px;
-  color: #08ffe5;
-  font-style: normal;
-  text-transform: none;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  width: 90px;
+  height: 32px;
+  text-align: center;
+  background: url(../../../../../assets/img/tab选中.png) no-repeat;
+  background-size: 100% 100%;
+  // border-radius: 4px 4px 4px 4px;
+  // border: 1px solid #6fe5ff;
+  font-family: Alimama ShuHeiTi;
+  font-weight: bold;
+  font-size: 18px;
+  color: #daedff;
+  font-style: italic;
 }
 
 .img_close {
@@ -240,12 +271,53 @@ const tableRowClassName = ({ row, rowIndex }) => {
 .dialog_table {
   width: 100%;
   height: 580px;
-  margin-top: 15px;
 }
 
-// 表格行间距
-// :deep(.el-table__body) {
-//   -webkit-border-vertical-spacing: 6px;
+:deep(.el-table) {
+  thead {
+    tr {
+      background-color: transparent !important;
+      background: none !important;
+      font-weight: 400 !important;
+    }
+    position: relative;
+
+    &::after {
+      content: '';
+      position: absolute;
+      bottom: 0;
+      left: 0px;
+      width: 100%;
+      height: 3px;
+      background: url('../../../../../assets/img/title-bottom-line.png') no-repeat center;
+      background-size: 100% 100%;
+      z-index: 1;
+    }
+  }
+}
+:deep(.el-table__header-wrapper th) {
+  background-color: transparent !important;
+  background: none !important;
+}
+
+// :deep(.el-table) {
+//   tbody {
+//     tr:first-child {
+//       position: relative;
+
+//       &::before {
+//         content: '';
+//         position: absolute;
+//         top: -1px; // 防止边框产生空隙
+//         left: 0;
+//         width: 100%;
+//         height: 4px; // 根据图片高度调整
+//         background: url('../../../../../assets/img/title-bottom-line.png') no-repeat center;
+//         background-size: 100% 100%;
+//         z-index: 1;
+//       }
+//     }
+//   }
 // }
 
 :deep(.el-table__inner-wrapper:before) {
@@ -322,4 +394,21 @@ const tableRowClassName = ({ row, rowIndex }) => {
   --el-border-color-hover: rgba(10, 192, 246, 1);
   --el-border-color: rgba(111, 229, 255, 0.3);
 }
+
+/* 单行背景色 */
+.dialog_table .single-row {
+  // top: 0px;
+  // background-color: rgba(27, 130, 183, 0.22) !important;
+  background: url(../../../../../assets/img/浅色-长.png) no-repeat;
+  // background: url(../../../../../assets/img/title-bottom-line.png) no-repeat;
+  background-size: 100% 100%;
+  // position: relative;
+}
+
+/* 双行背景色 */
+.dialog_table .double-row {
+  // background-color: rgba(27, 130, 183, 0.12) !important;
+  background: url(../../../../../assets/img/深色-长.png) no-repeat;
+  background-size: 100% 100%;
+}
 </style>

+ 102 - 114
src/views/left/dialog/components/dialog/LaboratoryTestNodeDialog.vue

@@ -14,21 +14,12 @@
       </div>
     </div>
     <div>
-      <el-input v-model="time" placeholder="请输入要查询的内容"></el-input>
-    </div>
-    <div class="tab_box">
-      <div v-for="(item, index) in dialogOptions.buttons" :key="item.id" class="right_btn" :class="{ right_btn_active: btnActiveIndex === index }" @click="handleButtonClick(index)">
-        {{ item.title }}
-      </div>
+      <el-select v-model="time" placeholder="日期(轮次)" popper-class="dialog_custom-select">
+        <el-option v-for="item in dialogStore.timeOptions" :key="item.value" :label="item.label" :value="item.value" />
+      </el-select>
     </div>
 
-    <el-table
-      :data="dialogOptions.tableData"
-      class="dialog_table"
-      @row-click="handleRowClick"
-      :header-cell-style="{ backgroundColor: 'transparent', color: '#ffffff' }"
-      :row-class-name="tableRowClassName"
-    >
+    <el-table :data="dialogOptions.tableData" class="dialog_table" @row-click="handleRowClick" :row-class-name="tableRowClassName">
       <el-table-column
         v-for="(column, colIndex) in dialogOptions.tableColumns"
         :key="`col_${colIndex}_${column.prop}`"
@@ -45,6 +36,7 @@
         </template>
       </el-table-column>
     </el-table>
+
   </div>
 </template>
 
@@ -90,48 +82,35 @@ const emit = defineEmits(['close', 'button-click', 'row-click'])
 
 const dialogOptions = ref({
   imgName: '小标题',
-  title: '病例列表',
+  title: '检测结果',
   activeIndex: 0,
-  buttons: [
-    { id: 0, title: '病例', active: true },
-    { id: 1, title: '密接', active: false },
-    { id: 2, title: '次密接', active: false }
-  ],
+  buttons: [],
   tableColumns: [
     { type: 'index', label: '序号', width: '80' },
-    { prop: 'code', label: '病例编号' },
-    { prop: 'name', label: '姓名' }
+    { prop: 'type', label: '样本分类' },
+    { prop: 'date', label: '日期/轮次' },
+    { prop: 'domeType', label: '样本类型' },
+    { prop: 'samplingNum', label: '采样数' },
+    { prop: 'testNum', label: '检测数' },
+    { prop: 'positiveNum', label: '阳性数' }
   ],
   tableData: [
     // 数据...
-    { code: '18-2024-1207-01-猴痘' ,name:'张嘉佳'},
-    { code: '05-2024-1207-01-猴痘' ,name:'孙忆枫'},
-    { code: '31-2024-1207-01-疟疾', name: '杨静云' },
-    { code: '31-2024-1207-01-疟疾' ,name:'王乐康'},
-    { code: '01-2024-1207-01-猩红热' ,name:'李怡悦'},
-    { code: '01-2024-1207-01-猩红热' ,name:'庞慧'},
-    { code: '01-2024-1207-01-猩红热' ,name:'李书易'},
-    { code: '01-2024-1207-01-猩红热' ,name:'胡小小'},
-    { code: '01-2024-1207-01-猩红热' ,name:'周乐心'},
-    { code: '01-2024-1207-01-猩红热' ,name:'杨松生'},
-    { code: '04-2024-1207-01-聚集性呕吐腹泻' ,name:'顾伦'},
-    { code: '04-2024-1207-01-聚集性呕吐腹泻' ,name:'王漫'},
-    { code: '04-2024-1207-01-聚集性呕吐腹泻' ,name:'尹丽娜'},
-    { code: '04-2024-1207-01-聚集性呕吐腹泻' ,name:'池子仪'},
-    { code: '04-2024-1207-01-聚集性呕吐腹泻' ,name:'李赫'},
-    { code: '04-2024-1207-01-聚集性呕吐腹泻' ,name:'傅彭薄'},
-    { code: '04-2024-1207-01-聚集性呕吐腹泻', name: '裴谊育' },
-    { code: '04-2024-1207-01-聚集性呕吐腹泻' ,name:'鲍业宝'},
-    { code: '04-2024-1207-01-聚集性呕吐腹泻' ,name:'黄隆心'},
-    { code: '04-2024-1207-01-聚集性呕吐腹泻' ,name:'侯彩蕊'},
-    { code: '04-2024-1207-01-聚集性呕吐腹泻04-2024-1207-01-聚集性呕吐腹泻' ,name:'冯立俏'},
-    { code: '04-2024-1207-01-聚集性呕吐腹泻' ,name:'宫臻'},
-    { code: '04-2024-1207-01-聚集性呕吐腹泻' ,name:'毛妹莲'},
-    { code: '04-2024-1207-01-聚集性呕吐腹泻' ,name:'孔崧谊'},
-    { code: '04-2024-1207-01-聚集性呕吐腹泻' ,name:'宁淑曼'},
-    { code: '04-2024-1207-01-聚集性呕吐腹泻' ,name:'明忱冶'},
-    { code: '04-2024-1207-01-聚集性呕吐腹泻' ,name:'叶洵歆'},
-
+    { type: '病例', date: '-', domeType: '血清', samplingNum: '-', testNum: '-', positiveNum: '-' },
+    { type: '病例', date: '-', domeType: '血清', samplingNum: '-', testNum: '-', positiveNum: '-' },
+    { type: '密接', date: '-', domeType: '血清', samplingNum: '-', testNum: '-', positiveNum: '-' },
+    { type: '密接', date: '-', domeType: '血清', samplingNum: '-', testNum: '-', positiveNum: '-' },
+    { type: '病例', date: '-', domeType: '血清', samplingNum: '-', testNum: '-', positiveNum: '-' },
+    { type: '病例', date: '-', domeType: '血清', samplingNum: '-', testNum: '-', positiveNum: '-' },
+    { type: '密接', date: '-', domeType: '血清', samplingNum: '-', testNum: '-', positiveNum: '-' },
+    { type: '密接', date: '-', domeType: '血清', samplingNum: '-', testNum: '-', positiveNum: '-' },
+    { type: '咽拭子', date: '-', domeType: '-', samplingNum: '-', testNum: '-', positiveNum: '-' },
+    { type: '咽拭子', date: '-', domeType: '-', samplingNum: '-', testNum: '-', positiveNum: '-' },
+    { type: '咽拭子', date: '-', domeType: '-', samplingNum: '-', testNum: '-', positiveNum: '-' },
+    { type: '咽拭子', date: '-', domeType: '-', samplingNum: '-', testNum: '-', positiveNum: '-' },
+    { type: '咽拭子', date: '-', domeType: '-', samplingNum: '-', testNum: '-', positiveNum: '-' },
+    { type: '咽拭子', date: '-', domeType: '-', samplingNum: '-', testNum: '-', positiveNum: '-' },
+    { type: '咽拭子', date: '-', domeType: '-', samplingNum: '-', testNum: '-', positiveNum: '-' }
   ]
 })
 
@@ -144,8 +123,8 @@ const getImgSrc = picName => {
 
 // 关闭弹窗
 const handleClose = () => {
-  // emit('close')
   dialogStore.setLaboratoryTestNodeDialogOpen(false)
+
 }
 
 // 表格行点击
@@ -153,30 +132,26 @@ const handleRowClick = row => {
   emit('row-click', row)
 }
 
-// 按钮点击处理
-const handleButtonClick = index => {
-  btnActiveIndex.value = index
-  // emit('button-click', {
-  //   index,
-  //   button: props.options.buttons[index]
-  // })
-}
-
 const tableRowClassName = ({ row, rowIndex }) => {
-  return rowIndex % 2 === 0 ? 'single-row' : 'double-row'
+  // return rowIndex % 2 === 0 ? 'single-row' : 'double-row'
+
+  if (rowIndex === 0) {
+    return 'single-row'
+  }
+  return rowIndex % 2 === 0 ? 'double-row' : ''
 }
 </script>
 
 <style lang="scss" scoped>
 .dialog_container {
   position: absolute;
-  right: -400px;
-  top: -20px;
-  width: 396px;
+  right: -600px;
+  top: 20px;
+  width: 582px;
   height: 768px;
-  background: url(../../../../../assets/img/弹框-.png) no-repeat;
+  background: url(../../../../../assets/img/弹框-.png) no-repeat;
   background-size: 100% 100%;
-  padding: 40px 50px;
+  padding: 20px;
   box-sizing: border-box;
   // background-color: #fff;
 }
@@ -209,48 +184,48 @@ const tableRowClassName = ({ row, rowIndex }) => {
   }
 }
 
-.tab_box {
-  width: 100%;
+.dialog_container_header_btn {
   display: flex;
   align-items: center;
-  justify-content: space-between;
-  height: 60px;
-  padding: 0 30px;
-  box-sizing: border-box;
 }
 
-.right_btn {
+.btn_box {
+  width: 100%;
   display: flex;
+  // justify-content: end;
   align-items: center;
-  justify-content: center;
-  // padding: 0 10px;
-  font-family: Alimama ShuHeiTi;
-  font-weight: bold;
-  color: #8dbfee;
-  font-style: italic;
-  background: linear-gradient(0deg, rgba(239, 251, 255, 0.34) 0%, rgba(0, 0, 0, 0.34) 11.9140625%, rgba(255, 254, 254, 0.34) 100%);
-  opacity: 0.85;
-  -webkit-background-clip: text;
-  // margin-right: 20px;
+  // margin-right: 30px;
+  // margin-top: 6px;
 }
 
+.right_btn {
+  padding: 0 5px;
+  box-sizing: border-box;
+  height: 24px;
+  border-radius: 4px 4px 4px 4px;
+  border: 1px solid rgba(111, 229, 255, 0.3);
+  font-family: Alibaba PuHuiTi 3;
+  font-weight: normal;
+  font-size: 14px;
+  color: #ffffff;
+  line-height: 24px;
+  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
+  text-align: center;
+  font-style: normal;
+  text-transform: none;
+  margin-left: 10px;
+}
 
 .right_btn_active {
-  display: flex;
-  align-items: center;
-  justify-content: center;
-  width: 90px;
-  height: 32px;
-  text-align: center;
-  background: url(../../../../../assets/img/tab选中.png) no-repeat;
-  background-size: 100% 100%;
-  // border-radius: 4px 4px 4px 4px;
-  // border: 1px solid #6fe5ff;
-  font-family: Alimama ShuHeiTi;
-  font-weight: bold;
-  font-size: 18px;
-  color: #daedff;
-  font-style: italic;
+  background: linear-gradient(90deg, #59a7da 0%, rgba(22, 116, 178, 0) 100%);
+  border-radius: 4px 4px 4px 4px;
+  border: 1px solid #6fe5ff;
+  font-family: Alibaba PuHuiTi 3;
+  font-weight: normal;
+  font-size: 14px;
+  color: #08ffe5;
+  font-style: normal;
+  text-transform: none;
 }
 
 .img_close {
@@ -261,17 +236,43 @@ const tableRowClassName = ({ row, rowIndex }) => {
 
 .dialog_table {
   width: 100%;
-  height: 540px;
+  height: 630px;
+  margin-top: 15px;
+}
+
+:deep(.el-table) {
+  thead {
+    tr {
+      background-color: transparent !important;
+      background: none !important;
+      font-weight: 400 !important;
+    }
+    position: relative;
+
+    &::after {
+      content: '';
+      position: absolute;
+      bottom: 0;
+      left: 0;
+      width: 100%;
+      height: 3px;
+      background: url('../../../../../assets/img/title-bottom-line.png') no-repeat center;
+      background-size: 100% 100%;
+      z-index: 1;
+    }
+  }
 }
 
+:deep(.el-table__header-wrapper th) {
+  background-color: transparent !important;
+  background: none !important;
+  // border-bottom: 1px solid rgba(41, 44, 45, 0.3) !important;
+}
 // 表格行间距
 // :deep(.el-table__body) {
 //   -webkit-border-vertical-spacing: 6px;
 // }
 
-/* 防止文字模糊 */
-
-
 :deep(.el-table__inner-wrapper:before) {
   height: 0;
 }
@@ -279,8 +280,6 @@ const tableRowClassName = ({ row, rowIndex }) => {
 :deep(.el-select__wrapper) {
   min-height: 32px !important;
 }
-
-
 </style>
 
 <style lang="scss">
@@ -348,15 +347,4 @@ const tableRowClassName = ({ row, rowIndex }) => {
   --el-border-color-hover: rgba(10, 192, 246, 1);
   --el-border-color: rgba(111, 229, 255, 0.3);
 }
-
-/* 单行背景色 */
-.dialog_table .single-row {
-  background-color: rgba(27, 130, 183, 0.22) !important;
-}
-
-/* 双行背景色 */
-.dialog_table .double-row {
-  background-color: rgba(27, 130, 183, 0.12) !important;
-}
-
 </style>

+ 7 - 0
src/views/left/modules/BigRiskTable.vue

@@ -683,6 +683,13 @@ function goBack() {
   height: 740px;
 }
 
+:deep(.el-table) {
+  tr {
+    background-color: rgba(0, 170, 255, 0.15) !important;
+    font-weight: 400 !important;
+  }
+}
+
 /* 风险等级背景 */
 .risk-badge {
   width: 80px;