jazz
2023-12-28 583e1038163d7b95f7927f83b19d81f6eac32020
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">
@@ -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