Commit 13fa28ad authored by xxx's avatar xxx

1

parent ff8e7e4e
<template>
<div>
<div class="DPcomputer6Box">
<!-- 气象数据 -->
</div>
</template>
......@@ -11,15 +12,23 @@ import { Tools, HttpReq, CAMap} from '@/assets/js/common.js';
export default {
data(){
return {
DPcomputer6BoxTimer:null,
}
},
mounted(){},
mounted(){
this.loadData();
},
methods:{
loadData(){
},
},
beforeDestroy(){
if(this.DPcomputer6BoxTimer) {
clearInterval(this.DPcomputer6BoxTimer);
this.DPcomputer6BoxTimer = null;
}
}
}
</script>
......@@ -29,5 +38,12 @@ export default {
margin: 0;
padding: 0;
}
.DPcomputer6Box{
width: 20vw;
height: 23.5vh;
background-color: rgba(32,42,67,0.95);
padding: 5px 7px;
box-sizing: border-box;
overflow: hidden;
}
</style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment