Commit 8309ba82 authored by 盖献康's avatar 盖献康

bug(66596) - 对话框关闭

parent a4e5e877
...@@ -279,6 +279,7 @@ ...@@ -279,6 +279,7 @@
append-to-body append-to-body
:close-on-press-escape="false" :close-on-press-escape="false"
:close-on-click-modal="false" :close-on-click-modal="false"
@close="closeSubscribe"
> >
<el-form ref="form" :model="form" :rules="rules" label-width="60px"> <el-form ref="form" :model="form" :rules="rules" label-width="60px">
<el-row> <el-row>
...@@ -547,6 +548,13 @@ export default { ...@@ -547,6 +548,13 @@ export default {
this.currentUser.userType = this.$store.state.user.userType this.currentUser.userType = this.$store.state.user.userType
this.currentUser.name = this.$store.state.user.name this.currentUser.name = this.$store.state.user.name
}, },
// 立即预约对话框关闭回调函数
closeSubscribe() {
this.form = {
equipmentIdList: [],
checkDate: null
}
},
/** 获取当前医院信息 */ /** 获取当前医院信息 */
getHospitalMessage() { getHospitalMessage() {
signHospitalMessage().then(response => { signHospitalMessage().then(response => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment