<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">
|
<span style="color:white">在线</span>
|
</el-col>
|
<el-col :span="2">
|
<div class="outlineColor">
|
</div>
|
</el-col>
|
<el-col :span="11">
|
<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>
|