Commit ff8e7e4e authored by xxx's avatar xxx

1

parent cfd18d2e
<template> <template>
<div> <div class="DPcomputer5Box">
<!-- 数据统计图表 -->
</div> </div>
</template> </template>
<script> <script>
import { Tools, HttpReq, CAMap} from '@/assets/js/common.js'; import { Tools, HttpReq, CAMap} from '@/assets/js/common.js';
import * as echarts from 'echarts';
export default { export default {
data(){ data(){
return { return {
DPcomputer5BoxTimer:null,
} }
}, },
mounted(){}, mounted(){
this.loadData();
},
methods:{ methods:{
loadData(){
}
}, },
beforeDestroy(){ beforeDestroy(){
if(this.DPcomputer5BoxTimer) {
clearInterval(this.DPcomputer5BoxTimer);
this.DPcomputer5BoxTimer = null;
}
} }
} }
</script> </script>
...@@ -29,5 +38,14 @@ export default { ...@@ -29,5 +38,14 @@ export default {
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
.DPcomputer5Box{
width: 60vw;
height: 23.5vh;
background-color: rgba(32,42,67,0.95);
padding: 5px 7px;
box-sizing: border-box;
overflow: hidden;
z-index: 3;
position: relative;
}
</style> </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