From 988558aaa309068fd393cc654be537434b0a15ea Mon Sep 17 00:00:00 2001
From: Your Name <123456>
Date: 星期四, 11 八月 2022 19:11:18 +0800
Subject: [PATCH] 修改

---
 src/views/contingencyManagement/emergencyPlanStartRecord/component/selectEmergencyPlan.vue |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/src/views/contingencyManagement/emergencyPlanStartRecord/component/selectEmergencyPlan.vue b/src/views/contingencyManagement/emergencyPlanStartRecord/component/selectEmergencyPlan.vue
index da6b207..9fe5f86 100644
--- a/src/views/contingencyManagement/emergencyPlanStartRecord/component/selectEmergencyPlan.vue
+++ b/src/views/contingencyManagement/emergencyPlanStartRecord/component/selectEmergencyPlan.vue
@@ -1,5 +1,5 @@
 <template>
-	<el-dialog v-model="dialogVisible" title="选择应急预案" width="900px" draggable :fullscreen="full">
+	<el-dialog v-model="dialogVisible" title="选择应急预案" width="900px" draggable :fullscreen="full" @close="closeDialog">
 		<el-button @click="toggleFullscreen" size="small" class="pot" :icon="FullScreen"></el-button>
 		<el-row>
 			<el-col :span="18">
@@ -154,6 +154,9 @@
 			dynamicTags.value.splice(dynamicTags.value.indexOf(tag), 1);
 			radio1.value = '';
 		};
+		const closeDialog = () => {
+			handleClose('')
+		}
 		const radio1 = ref('');
 		const radio = (event: any) => {
 			dynamicTags.value[0] = event;
@@ -198,6 +201,7 @@
 			onSubmit,
 			submitForm,
 			total,
+			closeDialog
 		};
 	},
 });

--
Gitblit v1.9.2