|
|
@@ -162,7 +162,7 @@
|
|
|
<img @click="min" class="min" src="../images/min.png" alt="">
|
|
|
<h1 class="title">
|
|
|
<img height="90px" width="100%" src="../images/bg_1.jpg" alt="">
|
|
|
- <span>监测系统</span>
|
|
|
+ <span>{{info.realname}}可视化系统</span>
|
|
|
</h1>
|
|
|
<ul class="datas">
|
|
|
<li style="width:30%;">
|
|
|
@@ -244,7 +244,8 @@ import echarts from 'echarts';
|
|
|
export default {
|
|
|
data(){
|
|
|
return{
|
|
|
- fullscreen:''
|
|
|
+ fullscreen:'',
|
|
|
+ info:{}
|
|
|
}
|
|
|
},
|
|
|
methods:{
|
|
|
@@ -551,6 +552,9 @@ export default {
|
|
|
this.getData()
|
|
|
},
|
|
|
created(){
|
|
|
+ this.$api.getInfo().then(res=>{
|
|
|
+ this.info=res.data.data
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
</script>
|