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
| <template>
| <div class="public-bounced" v-show="flag">
| <div class="public-bounced-title">
| <span>{{ displayContent.Name }}</span>
| <i class="el-icon-circle-close" @click="closePopup"></i>
| </div>
| <div class="public-bounced-content">
| <!-- <span>内容</span>-->
| <popup-gas></popup-gas>
| </div>
| </div>
| </template>
|
| <script>
| import PopupGas from '@components/flueGas/popup-gas'
| export default {
| name: 'PublicBounced',
| data () {
| return {
| displayContent: [],
| flag: false
| }
| },
| components: {
| PopupGas
| },
| methods: {
| setData (data) {
| this.displayContent = data
| this.flag = true
| },
| closePopup () {
| this.flag = false
| }
| }
| }
| </script>
|
| <style lang="less" scoped>
| .public-bounced {
| width: 80%;
| height: 450px;
| z-index: 999;
| position: absolute;
| top: 25%;
| left: 10%;
| background-color: #002432;
| margin: 1% auto;
| border: 1px #a5bfd8 solid;
|
| .public-bounced-title {
| width: 100%;
| border: 1px #a4c0d8 solid;
| display: flex;
| align-items: center;
| justify-content: space-between;
| padding: 5px 0;
|
| span {
| color: #f4f7ff;
| margin: 0 15px;
| font-size: 14px;
| }
|
| i {
| color: white;
| margin: 0 15px;
| font-size: 22px;
| }
| }
|
| }
| </style>
|
|