zuojincheng
2024-10-22 d3e02569fdef4d270e896bea2f9894f83c4503f9
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
63
64
65
66
<template>
  <transition name="maskAnimate">
    <div v-show="visible" class="dialog-box" @click="closeModal">
      <transition name="zoomAnimate">
        <div v-show="visible" class="dialog-box-slot">
          <slot />
        </div>
      </transition>
    </div>
  </transition>
</template>
 
<script>
export default {
  name: "Dialog",
  props: ['visible'],
  methods: {
    closeModal() {
      this.$emit('update:visible', false);
    }
  },
  watch: {
  },
  mounted() {
  },
  destroyed() {
  }
}
</script>
 
<style lang="less" scoped>
.dialog-box {
  z-index: 9999;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, .5);
  display: flex;
  justify-content: center;
  align-items: center;
 
  .dialog-box-slot {
    background-color: #002244;
    border-radius: 10px;
    overflow: hidden;
  }
}
 
.zoomAnimate-enter-active {
  animation: bounceIn 0.5s;
}
 
.zoomAnimate-leave-active {
  animation: bounceOut 0.2s;
}
 
.maskAnimate-enter-active {
  animation: fadeIn 0.5s;
}
 
.maskAnimate-leave-active {
  animation: fadeOut 0.2s;
}
</style>