You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
800 B

<template>
<div>
<el-button type="text" @click="isShow = true">点击打开 Dialog</el-button>
<el-button type="text" @click="ubmShow = true">UBM预约</el-button>
<re-dialog :is-show="isShow" @close="closeDialog" />
<u-b-m-order :is-show="ubmShow" @close="closeDialog" />
</div>
</template>
<script>
import ReDialog from '@/page-subspecialty/views/modules/nurseManagement/reDialog.vue'
import UBMOrder from '@/page-subspecialty/views/modules/nurseManagement/UBMOrder.vue'
export default {
name: 'NurseManagement',
components: { UBMOrder, ReDialog },
data() {
return {
isShow: false,
ubmShow: false // ubm弹框
}
},
methods: {
closeDialog(val) {
this.isShow = val
this.ubmShow = val
}
}
}
</script>
<style scoped>
</style>