2023西安数博会CIM演示-【前端】-Web
AdaKing88
2023-08-21 bc03b832caa49bbcd2674fe4cae3701b5059bf95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!--
 * @Author: LuLu
 * @Date: 2022-11-11 22:59:31
 * @LastEditors: LuLu
 * @LastEditTime: 2022-11-12 04:10:25
 * @FilePath: \PingShanSim\src\components\developcenter\outViewer\ElevatorDialog.vue
 * @Description: 电梯弹窗
-->
 
<template>
  <el-dialog :visible.sync="dialogVisible" width="30%" :before-close="handleClose" id="Eledialog">
    <span>这是一段信息</span>
    <span slot="footer" class="dialog-footer">
      <el-button @click="dialogVisible = false">取 消</el-button>
      <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
    </span>
  </el-dialog>
</template>
 
<script>
export default {
  data() {
    return {
 
    }
  },
  props: {
    dialogVisible: {
      type: Boolean,
      default: false
    }
  },
  methods: {
    handleClose() {
      
    }
  },
}
</script>
 
<style scoped lang="less">
 
</style>