From d8215ff56e7bf39b43c52d7f27de5e7e427e67cf Mon Sep 17 00:00:00 2001
From: zhaojiale <631455805@qq.com>
Date: 星期三, 10 八月 2022 10:55:23 +0800
Subject: [PATCH] 事故管理修改

---
 src/views/accidentManagementSystem/workInjuryDeclaration/component/accidentName.vue |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/views/accidentManagementSystem/workInjuryDeclaration/component/accidentName.vue b/src/views/accidentManagementSystem/workInjuryDeclaration/component/accidentName.vue
index d349645..603be72 100644
--- a/src/views/accidentManagementSystem/workInjuryDeclaration/component/accidentName.vue
+++ b/src/views/accidentManagementSystem/workInjuryDeclaration/component/accidentName.vue
@@ -1,6 +1,6 @@
 <template>
 	<div>
-		<el-dialog v-model="dialogVisible" title="选择事故名称" width="900px" draggable :fullscreen="full">
+		<el-dialog v-model="dialogVisible" title="选择事故名称" width="900px" draggable :fullscreen="full" @close="handleClose">
 			<el-button @click="toggleFullscreen" size="small" class="pot" :icon="FullScreen"></el-button>
 			<el-row>
 				<el-col :span="18">
@@ -85,7 +85,7 @@
 			</el-row>
 			<template #footer>
 				<span class="dialog-footer">
-					<el-button @click="dialogVisible = false" size="default">关闭</el-button>
+					<el-button @click="handleClose()" size="default">关闭</el-button>
 					<el-button type="primary" @click="submitForm" size="default">确定</el-button>
 				</span>
 			</template>
@@ -146,6 +146,7 @@
 		const submitForm = () => {
 			emit('selectItem', dynamicTags.value);
 			dialogVisible.value = false;
+			radio1.value=''
 		};
 		//查询list数据
 		const listApi = async () => {

--
Gitblit v1.9.2