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
| <template>
| <div v-if="!isShow" class="popupGas">
| <el-row>
| <el-col :span="12">
| <el-row>
| <gas-table :displayContent="displayContent"></gas-table>
| </el-row>
| <el-row>
| <gas-e-charts></gas-e-charts>
| </el-row>
| </el-col>
| <el-col :span="12">
| <gas-video></gas-video>
| </el-col>
| </el-row>
| </div>
| </template>
|
| <script>
| import GasTable from '@components/flueGas/GasComponents/GasTable'
| import GasECharts from '@components/flueGas/GasComponents/GasECharts'
| import GasVideo from '@components/flueGas/GasComponents/GasVideo'
|
| export default {
| name: 'popup-gas',
| components: {
| GasTable,
| GasECharts,
| GasVideo
| },
| data: function () {
| return {
| isShow: false,
| displayContent: []
| }
| },
| methods: {
| // setDate (data) {
| // console.log(data)
| // this.displayContent = data
| // }
| }
| }
| </script>
|
| <style scoped lang="less">
| /deep/ .popupGas {
| color: #fff;
|
| .leaflet-popup-content-wrapper {
| width: 100% !important;
| }
| }
| </style>
|
|