|
|
|
|
@ -12,16 +12,23 @@ |
|
|
|
|
{{ $moment().format('dddd') }} |
|
|
|
|
</div> |
|
|
|
|
<div> |
|
|
|
|
{{temp}}℃ {{text}} |
|
|
|
|
{{ temp }}℃ {{ text }} |
|
|
|
|
</div> |
|
|
|
|
<div @click="$router.replace({path: `/wel/index`})"> |
|
|
|
|
<div @click="$router.replace({ path: `/wel/index` })"> |
|
|
|
|
<img src="../../../../public/img/energySources/r.png" style="width: 0.2rem;height: 0.2rem;" srcset=""> |
|
|
|
|
返回首页 |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
<div class="htitle"> |
|
|
|
|
{{ userInfo.dept_name }}实业公司能耗监测系统 |
|
|
|
|
<div class="htitle-t"> |
|
|
|
|
|
|
|
|
|
{{ userInfo.dept_name }}实业公司能耗监测系统 |
|
|
|
|
</div> |
|
|
|
|
<div class="htitle-b"> |
|
|
|
|
|
|
|
|
|
{{ userInfo.dept_name }}实业公司能耗监测系统 |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
@ -34,11 +41,11 @@ export default { |
|
|
|
|
return { |
|
|
|
|
time: '', |
|
|
|
|
timeFun: null, |
|
|
|
|
temp:'', |
|
|
|
|
text:'', |
|
|
|
|
temp: '', |
|
|
|
|
text: '', |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
computed:{ |
|
|
|
|
computed: { |
|
|
|
|
...mapGetters(["userInfo", "permission"]), |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
@ -53,7 +60,7 @@ export default { |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
}, |
|
|
|
|
beforeDestroyed() { |
|
|
|
|
beforeDestroyed() { |
|
|
|
|
clearInterval(this.timeFun) |
|
|
|
|
}, |
|
|
|
|
}; |
|
|
|
|
@ -97,6 +104,7 @@ export default { |
|
|
|
|
line-height: 0.48rem; |
|
|
|
|
margin-left: 0.36rem; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
div:nth-child(5) { |
|
|
|
|
font-size: 0.2rem; |
|
|
|
|
line-height: 0.48rem; |
|
|
|
|
@ -112,14 +120,38 @@ export default { |
|
|
|
|
left: 7.2rem; |
|
|
|
|
width: 4.82rem; |
|
|
|
|
height: 0.46rem; |
|
|
|
|
text-align: center; |
|
|
|
|
font-size: 0.34rem; |
|
|
|
|
font-family: Microsoft YaHei; |
|
|
|
|
font-weight: bold; |
|
|
|
|
color: #FFFFFF; |
|
|
|
|
text-shadow: 3px 4px 2px rgba(0, 0, 0, 0.2); |
|
|
|
|
background: linear-gradient(-12deg, #C9E7FF 0%, #ECFCFF 100%); |
|
|
|
|
-webkit-background-clip: text; |
|
|
|
|
-webkit-text-fill-color: transparent; |
|
|
|
|
|
|
|
|
|
.htitle-t { |
|
|
|
|
position: absolute; |
|
|
|
|
top: 0; |
|
|
|
|
left: 0; |
|
|
|
|
width: 100%; |
|
|
|
|
height: 100%; |
|
|
|
|
text-align: center; |
|
|
|
|
font-size: 0.3rem; |
|
|
|
|
font-family: Microsoft YaHei; |
|
|
|
|
font-weight: bold; |
|
|
|
|
color: #FFFFFF; |
|
|
|
|
background: linear-gradient(-12deg, #C9E7FF 0%, #ECFCFF 100%); |
|
|
|
|
-webkit-background-clip: text; |
|
|
|
|
-webkit-text-fill-color: transparent; |
|
|
|
|
z-index: 2; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.htitle-b { |
|
|
|
|
position: absolute; |
|
|
|
|
|
|
|
|
|
text-align: center; |
|
|
|
|
font-size: 0.3rem; |
|
|
|
|
font-family: Microsoft YaHei; |
|
|
|
|
font-weight: bold; |
|
|
|
|
color: rgba(0, 0, 0, 0); |
|
|
|
|
top: 0; |
|
|
|
|
left: 0; |
|
|
|
|
width: 100%; |
|
|
|
|
height: 100%; |
|
|
|
|
z-index: 1; |
|
|
|
|
text-shadow: 4px 5px 2px rgba(0, 0, 0, 0.3); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|
|