| | |
| | | <template> |
| | | <div v-if="isShow" class="mask" @click="hideDialog"> |
| | | <div class="xio_room_status_chg_dialog" @click.stop="noop"> |
| | | <div class="title">MIC通知卸麻!</div> |
| | | <div class="title">MIC通知{{ info.appellationName }}卸麻!</div> |
| | | <div class="btn_box flex flex-center"> |
| | | <div class="btn_box_item flex flex-center" @click="confirm"> |
| | | <div class="flex flex-ver"> |
| | |
| | | |
| | | <script> |
| | | export default { |
| | | name: 'XioRoomStatusChg', |
| | | name: 'XioRoomOffNarcosisNotice', |
| | | props: { |
| | | isActive: { |
| | | type: Boolean, |
| | |
| | | }, |
| | | data() { |
| | | return { |
| | | isShow: false |
| | | isShow: false, |
| | | info: {} |
| | | } |
| | | }, |
| | | methods: { |
| | |
| | | showDialog() { |
| | | this.isShow = true |
| | | }, |
| | | // 数据处理 |
| | | dataInit(data) { |
| | | this.info = { ...data } |
| | | }, |
| | | // 关闭弹窗 |
| | | hideDialog() { |
| | | this.isShow = false |