Browse Source

弹窗统一关闭控制

hm 3 weeks ago
parent
commit
cdb4fdd8a6

+ 13 - 4
src/store/dialog.js

@@ -68,14 +68,23 @@ export const useDialogStore = defineStore('dialog', {
 
     // 弹窗统一关闭
     closeAllDialog () {
-      this.riskPersonnelDialogOpen = false
-      this.riskLocationDialogOpen = false
-      this.riskLocationDialogOpen = false
+      // this.riskPersonnelDialogOpen = false
+      // this.riskLocationDialogOpen = false
+      // this.riskActivityDialogOpen = false    
+      // this.riskTestResDialogOpen = false     
+      // this.riskAIDialogOpen = false
+      // this.riskAIDialogOpen2 = false
+
+      Object.keys(this.$state).forEach(key => {
+        this[key] = false
+
+      })
     }
+
   },
   // 使用插件的配置选项
   persist: {
     key: 'dialog-store',// 自定义存储的键名
-    storage: localStorage // 可以改为sessionStorage
+    storage: sessionStorage // 切换为 sessionStorage
   }
 })

+ 2 - 1
src/views/left/comp/dispose/RiskProfile.vue

@@ -236,7 +236,8 @@ const timeButtons = ref([
   { id: 2, name: '报告时间', active: true }
 ])
 
-function openAIDialogHandle() {
+function openAIDialogHandle () {
+   dialogStore.closeAllDialog()
    dialogStore.setRiskAI2DialogOpen(true)
 }
 

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

@@ -53,7 +53,8 @@ const changeBackground = index => {
   currentBackground.value = index
 }
 
-function openAIDialogHandle() {
+function openAIDialogHandle () {
+   dialogStore.closeAllDialog()
    dialogStore.setRiskAIDialogOpen(true)
 }