jazz
2024-01-09 c1e10385c164520dceec34576ed506b28bad1e71
src/components/xio_room_off_narcosis_notice/index.vue
@@ -1,7 +1,7 @@
<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">
@@ -15,7 +15,7 @@
<script>
export default {
  name: 'XioRoomStatusChg',
  name: 'XioRoomOffNarcosisNotice',
  props: {
    isActive: {
      type: Boolean,
@@ -24,7 +24,8 @@
  },
  data() {
    return {
      isShow: false
      isShow: false,
      info: {}
    }
  },
  methods: {
@@ -40,6 +41,10 @@
    showDialog() {
      this.isShow = true
    },
    // 数据处理
    dataInit(data) {
      this.info = { ...data }
    },
    // 关闭弹窗
    hideDialog() {
      this.isShow = false