zhangxiaoxu123456
2022-04-12 013df78e71b362f0210d284c65f4692e50ca6f16
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
67
68
69
70
71
72
73
74
75
76
<template>
    <div class="zhigongshebaoForm">
      <el-dialog
        :visible.sync="dialogVisible"
        width="86%"
        :before-close="handleClose">
        <div class="zhigongshebaoEcharts" ref="zhigongshebaoEcharts"></div>
      </el-dialog>
 
    </div>
</template>
 
<script>
    export default {
        name: "zhigongshebaoForm",
        data() {
            return {
                dialogVisible: false,
            }
        },
        methods: {
            init() {
                this.dialogVisible = true
            },
            handleClose() {
                this.dialogVisible = false
            }
        }
    }
</script>
 
<style lang="scss">
  // dialog对话框
  .zhigongshebaoForm {
    .el-dialog__wrapper {
      background: rgba(0, 0, 0, 0.9);
    }
    .el-dialog {
      background: url(../../../assets/images/businessPolicy/dialog@2x.png)
      no-repeat center;
      background-size: 100% 100%;
      height: 4.375rem;
    }
    .el-icon-close:before {
      content: url(../../../assets/images/businessPolicy/dialogClose@2x.png);
      width: 0.1875rem  /* 48/256 */;
      height: 0.1875rem;
      background-size: 100% 100%;
    }
    .el-dialog__headerbtn{
      position: absolute;
      top: 0.3125rem  /* 80/256 */;
      right: 0.3125rem  /* 80/256 */;
    }
    .el-dialog__header {
      padding: 0;
      width: 0;
      height: 0;
    }
    .el-dialog__body {
      text-align: center;
      color: #eeeeee;
      h1 {
        margin-top: 0.4375rem;
        font-size: 0.1563rem;
      }
      span {
        font-size: 0.1094rem;
      }
    }
    .el-divider {
      margin: 0;
      background-color: #eeeeee;
    }
  }
</style>