Ver Fonte

Merge branch 'dev' into lhh

citygis-lhh há 3 semanas atrás
pai
commit
f0345daa28

BIN
src/assets/img/AI_2.png


+ 20 - 0
src/store/dialog.js

@@ -7,6 +7,8 @@ export const useDialogStore = defineStore('dialog', {
       riskLocationDialogOpen: false,  // 存储风险场所弹窗开关
       riskActivityDialogOpen: false,  // 存储活动轨迹弹窗开关
       riskTestResDialogOpen: false,   // 存储检测结果弹窗开关
+      riskAIDialogOpen: false,   // 存储AI应急助手弹窗开关
+      riskAIDialogOpen2: false,   // 存储动态评估弹窗开关
     }
   },
   actions: {
@@ -46,6 +48,24 @@ export const useDialogStore = defineStore('dialog', {
       return this.riskTestResDialogOpen
     },
 
+    // AI
+    setRiskAIDialogOpen (open) {
+      this.riskAIDialogOpen = open
+    },
+
+    getRiskAIDialogOpen () {
+      return this.riskAIDialogOpen
+    },
+
+    // 动态评估
+    setRiskAI2DialogOpen (open) {
+      this.riskAIDialogOpen2 = open
+    },
+
+    getRiskAI2DialogOpen () {
+      return this.riskAIDialogOpen2
+    },
+
     // 弹窗统一关闭
     closeAllDialog () {
       this.riskPersonnelDialogOpen = false

+ 55 - 11
src/views/left/comp/dispose/RiskProfile.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="risk_profile_container">
     <!-- 1.==================== -->
-    <HeaderBoxContent  :headerObj="headerObj"></HeaderBoxContent>
+    <HeaderBoxContent :headerObj="headerObj"></HeaderBoxContent>
     <!-- <div class="risk_profile_header">
       <div class="risk_profile_title">
 
@@ -12,7 +12,7 @@
       <div class="risk_profile_change_btn">
       </div>
     </div> -->
-    
+
     <!-- 2.============================== -->
     <div class="risk_profile_info">
       <div class="risk_profile_info_top">
@@ -46,7 +46,11 @@
     </div>
     <!-- 3.风险概括====================== -->
     <div class="risk_summary">
-      <TowLevelTitle :title="'风险概括'"></TowLevelTitle>
+      <div class="risk_summary_header">
+        <TowLevelTitle :title="'风险概括'"></TowLevelTitle>
+
+        <div class="risk_summary_tag" @click="openAIDialogHandle"><img src="../../../../assets/img/动态评估.png" alt="">动态评估</div>
+      </div>
       <div class="risk_summary_content">
         <div class="risk_bg risk_bg_color">
           <div class="risk_bg_info">
@@ -176,7 +180,7 @@
 
     <!-- 7.检测情况 -->
     <div class="test_situation">
-      <TowLevelTitle :title="'检测情况'"  :buttons="testBottons"></TowLevelTitle>
+      <TowLevelTitle :title="'检测情况'" :buttons="testBottons"></TowLevelTitle>
       <div class="risk_bg_color test_situation_body">
         <div v-for="(item, index) in testData" :key="item.lable" class="test_situation_item">
           <div class="test_situation_name">
@@ -187,21 +191,29 @@
         </div>
       </div>
     </div>
+
+
+    <!-- 动态评估 弹窗 -->
+    <AiPublicRiskDialog v-if="dialogStore.riskAIDialogOpen2"> </AiPublicRiskDialog>
   </div>
 </template>
 <script setup>
+import AiPublicRiskDialog  from './dialog/AiPublicRiskDialog'
 import HeaderBoxContent from './common/HeaderBoxContent'
 import * as echarts from 'echarts'
 import { ref, watch, computed, reactive, toRefs, onBeforeMount, onMounted } from 'vue'
 import TowLevelTitle from '@/components/TowLevelTitle'
+import { useDialogStore } from '@/store/dialog'
+let dialogStore = useDialogStore()
 
 const headerObj = ref({
-  level:'C',
-  title:'05-2024-1210-01-不明原因肺炎',
-  typeList: ['风险个案'],
-  
+  level: 'C',
+  title: '05-2024-1210-01-不明原因肺炎',
+  typeList: ['风险个案']
 })
 
+const riskProfileBottons = ref([{ id: 1, name: '风险概况', active: false }])
+
 const infoList = ref([
   { lable: '报告时间', value: '2024-10-01 12:12', icon: '1' },
   { lable: '报告单位', value: '长宁区疾控中心', icon: '2' },
@@ -224,6 +236,10 @@ const timeButtons = ref([
   { id: 2, name: '报告时间', active: true }
 ])
 
+function openAIDialogHandle() {
+   dialogStore.setRiskAI2DialogOpen(true)
+}
+
 //4.时间分布 地区分布
 // 初始化时间分布图(蓝色渐变)
 const initTimeChart = () => {
@@ -510,7 +526,35 @@ onMounted(() => {
   .risk_summary {
     width: 100%;
     height: 100px;
-
+    .risk_summary_header {
+      width: 100%;
+      position: relative;
+      >img{
+        margin-right: 5px;
+        width: 14px;
+        height: 14px;
+      }
+      .risk_summary_tag {
+        position: absolute;
+        top: 0px;
+        right: 5px;
+        width: 90px;
+        height: 24px;
+        // background: linear-gradient(90deg, #59a7da 0%, rgba(22, 116, 178, 0) 100%);
+        border-radius: 4px 4px 4px 4px;
+        border: 1px solid #6fe5ff;
+        display: flex;
+        align-items: center;
+        justify-content: center;
+        gap: 5px;
+        font-family: Alibaba PuHuiTi 3, Alibaba PuHuiTi 30;
+        font-weight: normal;
+        font-size: 14px;
+        color: #9ffdff;
+        font-style: normal;
+        text-transform: none;
+      }
+    }
     .risk_summary_content {
       display: flex;
       // flex-direction: column;
@@ -752,7 +796,7 @@ onMounted(() => {
         height: 63px;
         display: flex;
         align-items: center;
-         margin: 11px auto 0px;
+        margin: 11px auto 0px;
         .risk_personnel_item {
           display: flex;
           align-items: center;
@@ -797,7 +841,7 @@ onMounted(() => {
         height: 63px;
         display: flex;
         align-items: center;
-         margin: 11px auto 0px;
+        margin: 11px auto 0px;
         .risk_location_item {
           display: flex;
           align-items: center;

+ 269 - 0
src/views/left/comp/dispose/dialog/AiPublicRiskDialog.vue

@@ -0,0 +1,269 @@
+<template>
+  <div class="ai-public-risk">
+    <div class="ai-public-header">
+      <div class="brid-box"></div>
+      <div class="close-box" @click="handleClose"></div>
+      <div class="ai-public-header_title">动态评估</div>
+      <div class="ai-public-header_btn">智能辅助</div>
+    </div>
+    <el-scrollbar class="ai-public-content">
+      <div class="title-box">
+        <div class="content" @click="showContent = !showContent">
+          <div>个体风险</div>
+          <div class="arrow-box">
+            <el-icon v-if="showContent" color="#67f6fe"><ArrowDownBold /></el-icon>
+            <el-icon v-else color="#67f6fe"><ArrowUpBold /></el-icon>
+          </div>
+        </div>
+      </div>
+      <transition name="fade">
+        <div class="content-box" v-if="showContent">
+          <div class="text-content">
+            <div>根据病例的临床表现和检测结果,初步排除了常见的呼吸道传染病病原体,考虑不明原因肺炎的可能性大,包括:</div>
+          </div>
+        </div>
+      </transition>
+
+      <div class="title-box">
+        <div class="content" @click="showContent = !showContent">
+          <div>群体风险</div>
+          <div class="arrow-box">
+            <el-icon v-if="showContent"><ArrowDownBold /></el-icon>
+            <el-icon v-else><ArrowUpBold /></el-icon>
+          </div>
+        </div>
+      </div>
+      <transition name="fade">
+        <div class="content-box" v-if="showContent">
+          <div class="text-content">
+            <div>· 传播风险:病例在发病前曾前往浙江杭州参加聚会,存在一定的传播风险。虽然其否认周围有类似症状病人,但仍需对密切接触者进行追踪和医学观察。</div>
+            <div>· 聚集性风险:若该病例为新型病原体感染,且具有较强的传染性,可能会在家庭、社区或医疗机构内引起聚集性疫情。</div>
+          </div>
+        </div>
+      </transition>
+
+      <div class="title-box">
+        <div class="content" @click="showContent = !showContent">
+          <div>群体风险</div>
+          <div class="arrow-box">
+            <el-icon v-if="showContent"><ArrowDownBold /></el-icon>
+            <el-icon v-else><ArrowUpBold /></el-icon>
+          </div>
+        </div>
+      </div>
+      <transition name="fade">
+        <div class="content-box" v-if="showContent">
+          <div class="text-content">
+            <div>· 社区传播风险:病例居住在上海市闵行区,且有跨区域活动史,需警惕在社区内引发传播。</div>
+            <div>· 医疗机构传播风险:病例已住院治疗,需加强医院感染控制措施,防止在医疗机构内传播。</div>
+            <div>· 跨区域传播风险:病例曾前往浙江杭州,需关注跨区域传播的可能性,及时与其他地区疾控部门沟通。</div>
+          </div>
+        </div>
+      </transition>
+
+      
+    </el-scrollbar>
+  </div>
+</template>
+
+<script setup>
+import { ref } from 'vue'
+import { CaretTop, CaretBottom, ArrowUpBold, ArrowDownBold } from '@element-plus/icons-vue'
+import { useDialogStore } from '@/store/dialog'
+let dialogStore = useDialogStore()
+import { right } from '@antv/x6/lib/registry/port-layout/line'
+
+const emit = defineEmits(['closeClick'])
+
+const handleClose = () => {
+  dialogStore.setRiskAI2DialogOpen(false)
+}
+const showContent = ref(false)
+</script>
+
+<style lang="scss" scoped>
+.ai-public-risk {
+  position: absolute;
+  right: -1420px;
+  top: -10px;
+  background-image: url('@/assets/img/ai-bg.png');
+  background-size: 100% 100%;
+  width: 790px;
+  height: 500px;
+  z-index: 29;
+  overflow: hidden;
+  .ai-public-header {
+    position: relative;
+    display: flex;
+    align-items: center;
+    padding-top: 18px;
+    padding-left: 25px;
+    box-sizing: border-box;
+    gap: 10px;
+    box-sizing: border-box;
+    width: 100%;
+    height: 57px;
+    font-family: YouSheBiaoTiHei;
+    font-weight: 400;
+    font-size: 24px;
+    line-height: 30px;
+    text-shadow: 0px 3px 4px rgba(0, 40, 62, 0.25);
+    text-align: left;
+    font-style: normal;
+    text-transform: none;
+    background: linear-gradient(89.99999804120293deg, #ffffff 0%, #a4e9ff 100%);
+    -webkit-background-clip: text;
+    -webkit-text-fill-color: transparent;
+    .brid-box {
+      width: 28px;
+      height: 28px;
+      background-image: url('@/assets/img/动态评估.png');
+      background-size: 100% 100%;
+    }
+    .ai-public-header_btn {
+      display: flex;
+      align-items: center;
+      justify-content: center;
+      width: 70px;
+      height: 24px;
+      border-radius: 4px 4px 4px 4px;
+      border: 1px solid #6fe5ff;
+      font-family: Alibaba PuHuiTi 3;
+      font-weight: normal;
+      font-size: 14px;
+      color: #9ffdff;
+      font-style: normal;
+      text-transform: none;
+      -webkit-background-clip: text;
+      -webkit-text-fill-color: transparent;
+    }
+
+    .close-box {
+      position: absolute;
+      top: 0px;
+      right: 0;
+      width: 75px;
+      height: 60px;
+      cursor: pointer;
+    }
+  }
+  .ai-public-content {
+    height: calc(100% - 80px);
+    padding: 10px 30px;
+    box-sizing: border-box;
+    .title-box {
+      position: relative;
+      height: 32px;
+      margin-top: 15px;
+      background: linear-gradient(to right, rgba(60, 161, 255, 0.1) 0%, rgba(60, 161, 255, 0) 50%);
+      padding-left: 15px;
+      border-bottom: 1px solid;
+      border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(0, 240, 255, 0) 47%) 2 2;
+      .content {
+        border-radius: 0px 0px 0px 0px;
+        height: 100%;
+        font-family: Alibaba PuHuiTi 3, Alibaba PuHuiTi 30;
+        font-weight: normal;
+        font-size: 18px;
+        color: #ffffff;
+        text-shadow: 0px 0px 9px #158eff;
+        font-style: normal;
+        text-transform: none;
+        display: flex;
+        justify-content: space-between;
+      }
+      &::after {
+        content: '';
+        position: absolute;
+        width: 7px;
+        height: 7px;
+        left: 0;
+        top: 50%;
+        transform: translateY(-55%);
+        background-color: rgba(33, 231, 251, 1);
+      }
+    }
+    .content-box {
+      background: rgba(60, 161, 255, 0.15);
+      border-radius: 0px 0px 0px 0px;
+      padding: 10px;
+      margin-top: 10px;
+      .text-content {
+        font-family: Alibaba PuHuiTi;
+        font-weight: normal;
+        font-size: 14px;
+        color: #a4deff;
+        line-height: 16px;
+        text-align: left;
+        font-style: normal;
+        text-transform: none;
+      }
+      .show-content {
+        position: relative;
+        display: flex;
+        align-items: center;
+        height: 32px;
+        padding-left: 15px;
+        margin-top: 10px;
+        background: linear-gradient(to right, rgba(0, 178, 255, 0.4) 0%, rgba(0, 178, 255, 0.1) 100%);
+        border-radius: 0px 0px 0px 0px;
+        border-bottom: 1px solid;
+        border-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(0, 240, 255, 0) 20%) 2 2;
+        .arrow-box {
+          position: absolute;
+          right: 0;
+          top: 50%;
+          transform: translateY(-50%);
+          color: rgba(0, 209, 255, 1);
+        }
+        &::after {
+          box-sizing: border-box;
+          position: absolute;
+          content: '';
+          top: 0;
+          left: 0;
+          //   background: #25D8FF;
+          border-top: 4px solid #25d8ff;
+          border-bottom: 4px solid transparent;
+          border-left: 4px solid #25d8ff;
+          border-right: 4px solid transparent;
+        }
+        .content {
+          font-family: Alibaba PuHuiTi;
+          font-weight: normal;
+          font-size: 14px;
+          color: #ffffff;
+          line-height: 16px;
+          text-align: left;
+          font-style: normal;
+          text-transform: none;
+        }
+      }
+      .bottom-content-box {
+        padding: 5px 15px;
+        font-family: Alibaba PuHuiTi;
+        font-weight: normal;
+        font-size: 14px;
+        color: #ffffff;
+        line-height: 16px;
+        text-align: left;
+        font-style: normal;
+        text-transform: none;
+        line-height: 1.5;
+        background: linear-gradient(90deg, rgba(0, 133, 255, 0) 0%, rgba(0, 163, 255, 0.5) 16%, rgba(0, 117, 255, 0.1) 100%);
+        border-radius: 0px 0px 0px 0px;
+      }
+    }
+  }
+  .fade-evnter-active,
+  .fade-leave-active {
+    transition: all 0.3s;
+    max-height: 300px;
+  }
+  .fade-enter,
+  .fade-leave-to {
+    max-height: 0px;
+    opacity: 0;
+  }
+}
+</style>

+ 255 - 0
src/views/left/dialog/AiPublicRiskDialog.vue

@@ -0,0 +1,255 @@
+<template>
+  <div class="ai-public-risk">
+    <div class="ai-public-header">
+      <div class="brid-box"></div>
+      <div class="close-box" @click="handleClose"></div>
+      AI应急助手
+    </div>
+    <el-scrollbar class="ai-public-content">
+      <div class="title-box">
+        <div class="content">疾病判断</div>
+      </div>
+      <div class="content-box">
+        <div class="text-content">
+          <span>根据病例的临床表现和检测结果,初步排除了常见的呼吸道传染病病原体,考虑不明原因肺炎的可能性大,包括:</span>
+        </div>
+        <div class="show-content">
+          <span class="content">1.罕见或新发的病原体感染:如SARS、人感染动物源性流感、MERS等</span>
+        </div>
+        <div class="show-content">
+          <span class="content">2.细菌性或真菌性肺炎:如肺炎克雷伯菌感染、肺炎链球菌感染、肺孢子菌感染等</span>
+        </div>
+      </div>
+      <div class="title-box">
+        <div class="content">疾病概述</div>
+      </div>
+
+      <div class="content-box">
+        <div class="show-content" @click="showContent = !showContent">
+          <span class="content">1.罕见或新发的病原体感染:如SARS、人感染动物源性流感、MERS等</span>
+          <div class="arrow-box">
+            <el-icon v-if="showContent"><CaretTop /></el-icon>
+            <el-icon v-else><CaretBottom /></el-icon>
+          </div>
+        </div>
+        <transition name="fade">
+          <div class="bottom-content-box" v-if="showContent">
+            SARS(传染性非典型肺炎)是由SARS冠状病毒(SARS-CoV)引起的一种急性呼吸道传染病。
+            <br />
+            (1) 法定传染病:乙类传染病,按照甲类传染病管理。 (2)
+            <br />
+            病原体:SARS冠状病毒,属于冠状病毒科,是一种单链RNA病毒。 (3) 流行病学
+            <br />
+            · 传染源:病人是最主要的传染源。
+            <br />
+            · 传播途径:近距离呼吸道飞沫传播、密切接触传播。
+            <br />
+            · 易感人群:青壮年、医护人员、免疫力低下者。 (4) 临床表现:
+            <br />
+            · 潜伏期:1-16天,常见为3-5天。
+            <br />
+            · 症状:起病急,以高热(体温常超过38℃)为首发症状,可伴有头痛、肌肉酸痛、乏力、腹泻等。发病3-7天后出现干咳、少痰,部分患者有血丝痰。重症患者可出现呼吸窘迫综合征(ARDS)、休克和多器官功能衰竭。
+            <br />
+            (5) 流行特征
+            <br />
+            · 地区分布:2002年11月至2003年7月全球首次SARS流行中,全球共报告SARS临床诊断病例8096例,死亡774例,发病波及29个国家和地区。病例主要分布于亚洲、欧洲、美洲等地区。中国内地总发病数达5327例,死亡349例,病死率为6.6%,病例主要集中在北京、广东、山西、内蒙古、河北、天津等地。
+            <br />
+            · 时间分布:发病主要集中在2003年3月中旬至5月中。
+            <br />
+            · 人群分布:主要发病年龄
+            <br />
+            在20~60岁之间。男女性别间发病无显著差异。人群职业分布有医务人员明显高发的特点。
+            <br />
+          </div>
+        </transition>
+
+        <div class="show-content">
+          <span class="content">2.细菌性或真菌性肺炎:如肺炎克雷伯菌感染、肺炎链球菌感染、肺孢子菌感染等</span>
+        </div>
+      </div>
+    </el-scrollbar>
+  </div>
+</template>
+
+<script setup>
+import { ref } from 'vue'
+import { CaretTop, CaretBottom } from '@element-plus/icons-vue'
+import { useDialogStore } from '@/store/dialog'
+let dialogStore = useDialogStore()
+import { right } from "@antv/x6/lib/registry/port-layout/line";
+
+const emit = defineEmits(['closeClick'])
+
+const handleClose = () => {
+    dialogStore.setRiskAIDialogOpen(false)
+}
+const showContent = ref(false)
+</script>
+
+<style lang="scss" scoped>
+.ai-public-risk {
+  position: absolute;
+  right: -1420px;
+  top: 30px;
+  background-image: url('@/assets/img/ai-bg.png');
+  background-size: 100% 100%;
+  width: 790px;
+  height: 547px;
+  z-index: 29;
+  overflow: hidden;
+  .ai-public-header {
+    position: relative;
+    display: flex;
+    align-items: center;
+    padding-top: 15px;
+    padding-left: 65px;
+    box-sizing: border-box;
+    width: 100%;
+    height: 57px;
+    font-family: YouSheBiaoTiHei;
+    font-weight: 400;
+    font-size: 24px;
+    line-height: 30px;
+    text-shadow: 0px 3px 4px rgba(0, 40, 62, 0.25);
+    text-align: left;
+    font-style: normal;
+    text-transform: none;
+    background: linear-gradient(89.99999804120293deg, #ffffff 0%, #a4e9ff 100%);
+    -webkit-background-clip: text;
+    -webkit-text-fill-color: transparent;
+    .brid-box {
+      position: absolute;
+      top: 0px;
+      left: 0;
+      width: 75px;
+      height: 60px;
+      background-image: url('@/assets/img/brid-icon.png');
+      background-size: 100% 100%;
+    }
+    .close-box {
+      position: absolute;
+      top: 0px;
+      right: 0;
+      width: 75px;
+      height: 60px;
+      cursor: pointer;
+    }
+  }
+  .ai-public-content {
+    height: calc(100% - 90px);
+    padding: 10px 30px;
+    box-sizing: border-box;
+    .title-box {
+      position: relative;
+      height: 32px;
+      margin-top: 15px;
+      background: linear-gradient(to right, rgba(60, 161, 255, 0.1) 0%, rgba(60, 161, 255, 0) 50%);
+      padding-left: 15px;
+      border-bottom: 1px solid;
+      border-image: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, rgba(0, 240, 255, 0) 47%) 2 2;
+      .content {
+        border-radius: 0px 0px 0px 0px;
+        height: 100%;
+        font-family: Alibaba PuHuiTi 3, Alibaba PuHuiTi 30;
+        font-weight: normal;
+        font-size: 18px;
+        color: #ffffff;
+        text-shadow: 0px 0px 9px #158eff;
+        font-style: normal;
+        text-transform: none;
+      }
+      &::after {
+        content: '';
+        position: absolute;
+        width: 7px;
+        height: 7px;
+        left: 0;
+        top: 50%;
+        transform: translateY(-55%);
+        background-color: rgba(33, 231, 251, 1);
+      }
+    }
+    .content-box {
+      background: rgba(60, 161, 255, 0.15);
+      border-radius: 0px 0px 0px 0px;
+      padding: 10px;
+      margin-top: 10px;
+      .text-content {
+        font-family: Alibaba PuHuiTi;
+        font-weight: normal;
+        font-size: 14px;
+        color: #a4deff;
+        line-height: 16px;
+        text-align: left;
+        font-style: normal;
+        text-transform: none;
+      }
+      .show-content {
+        position: relative;
+        display: flex;
+        align-items: center;
+        height: 32px;
+        padding-left: 15px;
+        margin-top: 10px;
+        background: linear-gradient(to right, rgba(0, 178, 255, 0.4) 0%, rgba(0, 178, 255, 0.1) 100%);
+        border-radius: 0px 0px 0px 0px;
+        border-bottom: 1px solid;
+        border-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(0, 240, 255, 0) 20%) 2 2;
+        .arrow-box {
+          position: absolute;
+          right: 0;
+          top: 50%;
+          transform: translateY(-50%);
+          color: rgba(0, 209, 255, 1);
+        }
+        &::after {
+          box-sizing: border-box;
+          position: absolute;
+          content: '';
+          top: 0;
+          left: 0;
+          //   background: #25D8FF;
+          border-top: 4px solid #25d8ff;
+          border-bottom: 4px solid transparent;
+          border-left: 4px solid #25d8ff;
+          border-right: 4px solid transparent;
+        }
+        .content {
+          font-family: Alibaba PuHuiTi;
+          font-weight: normal;
+          font-size: 14px;
+          color: #ffffff;
+          line-height: 16px;
+          text-align: left;
+          font-style: normal;
+          text-transform: none;
+        }
+      }
+      .bottom-content-box {
+        padding: 5px 15px;
+        font-family: Alibaba PuHuiTi;
+        font-weight: normal;
+        font-size: 14px;
+        color: #ffffff;
+        line-height: 16px;
+        text-align: left;
+        font-style: normal;
+        text-transform: none;
+        line-height: 1.5;
+        background: linear-gradient(90deg, rgba(0, 133, 255, 0) 0%, rgba(0, 163, 255, 0.5) 16%, rgba(0, 117, 255, 0.1) 100%);
+        border-radius: 0px 0px 0px 0px;
+      }
+    }
+  }
+  .fade-evnter-active,
+  .fade-leave-active {
+    transition: all 0.3s;
+    max-height: 300px;
+  }
+  .fade-enter,
+  .fade-leave-to {
+    max-height: 0px;
+    opacity: 0;
+  }
+}
+</style>

+ 56 - 1
src/views/left/modules/ProgressInDisposal.vue

@@ -5,6 +5,15 @@
       <div class="tab-button" @click="changeBackground(1)"></div>
       <div class="tab-button" @click="changeBackground(2)"></div>
       <div class="tab-button" @click="changeBackground(3)"></div>
+
+      <div class="ai_tab-button" @click="openAIDialogHandle">
+        AI应急助手
+        <div class="ai_tab-button_bg_img">
+        <!-- <img src="../../../assets/img/AI_1.png" alt="" /> -->
+      </div>
+      </div>
+
+    
     </div>
 
     <!-- 2.主体内容 ====================================-->
@@ -17,8 +26,11 @@
     <!-- 3.信息报告 -->
     <InformationReport v-if="currentBackground === 3"></InformationReport>
 
-    <!-- 弹窗 -->
+    <!-- 弹窗 处置进度/处置清单/标准处置流程-->
     <ProgressInDisposalDialog></ProgressInDisposalDialog>
+
+    <!-- AI应急助手 -->
+    <AiPublicRiskDialog v-if="dialogStore.riskAIDialogOpen"></AiPublicRiskDialog>
   </div>
 </template>
 <script setup>
@@ -26,15 +38,26 @@ import CaseHandling from '../comp/dispose/CaseHandling'
 import RiskProfile from '../comp/dispose/RiskProfile'
 import InformationReport from '../comp/dispose/InformationReport'
 import ProgressInDisposalDialog from '../dialog/ProgressInDisposalDialog.vue'
+import AiPublicRiskDialog from '../dialog/AiPublicRiskDialog.vue'
 
 import { ref, reactive, toRefs, onBeforeMount, onMounted } from 'vue'
 
+import { useDialogStore } from '@/store/dialog'
+let dialogStore = useDialogStore()
+
 // 用于存储当前背景图的索引
 const currentBackground = ref(1)
 // 点击按钮时切换背景图
 const changeBackground = index => {
+  dialogStore.closeAllDialog()
   currentBackground.value = index
 }
+
+function openAIDialogHandle() {
+   dialogStore.setRiskAIDialogOpen(true)
+}
+
+
 </script>
 <style lang="scss" scoped>
 .dispose_container {
@@ -127,4 +150,36 @@ const changeBackground = index => {
   // background-color: skyblue;
   // opacity: 0.3;
 }
+
+.ai_tab-button {
+  position: absolute;
+  top: 11px;
+  right: 0px;
+  width: 121px;
+  height: 32px;
+  // background: linear-gradient(90deg, #59a7da 0%, rgba(22, 116, 178, 0) 100%);
+  border-radius: 8px 8px 0px 0px;
+  border: 1px solid #6fe5ff;
+  padding-left: 20px;
+  box-sizing: border-box;
+  display: flex;
+  align-items: center;
+  font-family: Alibaba PuHuiTi 3.0;
+ font-weight: normal;
+ font-size: 14px;
+ color: #9FFDFF;
+text-align: left;
+font-style: normal;
+text-transform: none;
+}
+
+.ai_tab-button_bg_img {
+  position: absolute;
+  top: -30px;
+  right: 90px;
+  width: 74px;
+  height: 59px;
+  background: url(@/assets/img/brid-icon.png) no-repeat;
+  background-size: 100% 100%;
+}
 </style>