From d3d6b956f529d17f8f2774fcfe6c3252d34d3f00 Mon Sep 17 00:00:00 2001 From: shj <1790240199@qq.com> Date: 星期三, 10 八月 2022 10:58:33 +0800 Subject: [PATCH] Merge branch 'master' of https://sinanoaq.cn:8888/r/gtqtOut --- 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