haoxuan
2024-04-07 508ca07de304f2d7b4c4cc8612875317307dccf6
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<template>
  <div class="add_wordshop">
    <el-dialog
      title="提示"
      :visible.sync="editConfig.visible"
      width="30%"
      :before-close="handleClose">
      <span>这是一段信息</span>
      <span slot="footer" class="dialog-footer">
        <el-button @click="editConfig.visible = false">取 消</el-button>
        <el-button type="primary" @click="editConfig.visible = false">确 定</el-button>
      </span>
    </el-dialog>
  </div>
</template>
 
<script>
export default {
  props: {
    editDiaConfig:{
      type: Object,
      default: () => {
        return {
          visible: false,
          infomitton: {
 
          }
        }
      }
    }
  },
  data() {
    return {
      editConfig:this.editDiaConfig
    };
  },
  computed: {
 
  },
  created() {
 
  },
  mounted() {
 
  },
  watch: {
 
  },
  methods: {
    handleClose(done) {
      done();
    }
  },
  components: {
 
  },
};
</script>
 
<style scoped lang="scss">
 
</style>