kongdeqiang
2025-01-07 84b7e68f71e414e575518b3c34bf722782cc507d
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
<template>
  <div class="wrong-tishi">
    <div class="again-dialog-box">
      <el-dialog
          :visible.sync="wrongDialogVisible"
          :close-on-click-modal="false"
          :show-close="false"
          width="100%">
        <div class="again-dialog-main">
          <img src="../../assets/images/wrongIcon.png" alt="">
          <h1>
            入场信息异常,请联系管理员
          </h1>
        </div>
      </el-dialog>
    </div>
  </div>
</template>
 
<script>
export default {
  name: "TishiDialog",
  data() {
    return {
      wrongDialogVisible: true,
    }
  },
  methods: {
  }
}
</script>
 
<style lang="scss">
.wrong-tishi{
  .el-dialog__header{
    background: transparent!important;
  }
}
 
</style>
<style lang="scss" scoped>
.wrong-tishi{
  .again-dialog-main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    img{
      width: 13.33vw  /* 100/7.5 */;
      height: 13.33vw  /* 100/7.5 */;
    }
    h1{
      font-size: 4vw  /* 30/7.5 */;
      margin-top: 3.521vh  /* 40/11.36 */;
    }
  }
}
</style>