Xxxu
2020-07-07 4f953ffc89fc95f83b152e914c5e65938b440f17
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<template>
  <div>
    <div class="user-base-title">
        <div style="margin-left:30px;padding-top:8px">
            <img src="http://47.106.172.9:443/download/icon/device_icon.png" style="margin-top:0px" height="13px" width="15px">
            <span style="color:white">用户设备信息</span>
        </div>
    </div>
    <div class="user-base-body">
        <el-row :gutter="5">
            <el-col :span="8">
                <streetlight-chart></streetlight-chart>
            </el-col>
            <el-col :span="8">
                <led-chart></led-chart>
            </el-col>
            <el-col :span="8">
                <camera-chart></camera-chart>
            </el-col>
        </el-row>
        <el-row>
            <el-col :span="8">
                <div class="inlineColor">
                </div>
            </el-col>
            <el-col :span="3">
                &nbsp;&nbsp;<span style="color:white">在线</span>
            </el-col>
            <el-col :span="2">
                <div class="outlineColor">
                </div>
            </el-col>
            <el-col :span="11">
                &nbsp;&nbsp;<span style="color:white">不在线</span>
            </el-col>
        </el-row>
    </div>
    <div class="user-base-bottom"></div>
  </div>
</template>
 
<script>
import StreetlightChart from './user-base-info/user-base-info-streetlight-chart'
import CameraChart from './user-base-info/user-base-info-camera-chart'
import LedChart from './user-base-info/user-base-info-led-chart'
export default {
  data () {
    return {
 
    }
  },
  components: {
    StreetlightChart,
    CameraChart,
    LedChart
  },
  activated () {
  },
 
  methods: {
  }
}
</script>
<style>
.inlineColor {
    background-color: #09BAFE;
    width:15px;
    height: 15px;
    float:right;
}
.outlineColor {
    background-color: #FC0A15;
    width:15px;
    height: 15px;
    float:right;
}
.user-base-title {
    height: 30px;
    width: 100%;
    background-image: url(~@/assets/img/content_charts_title.png);
    background-size: 100% 30px;
}
.user-base-body {
    height: 150px;
    width: 100%;
    background-image: url(~@/assets/img/content_charts_body.png);
    background-size: 100% 150px;
}
.user-base-bottom {
    height: 30px;
    width: 100%;
    background-image: url(~@/assets/img/content_charts_bottom.png);
    background-size: 100% 30px;
}
</style>