2022-10-19 19:53:54 +08:00

44 lines
1.0 KiB
Vue

<template>
<Card title="测量控制">
<div class="maxbox">
<div class="btn">暂停扫描</div>
<div class="btn">恢复扫描</div>
<div class="btn">调阅全景</div>
<div class="btn">调阅测量</div>
<div class="btn">巡航记录</div>
</div>
</Card>
</template>
<script>
import Card from '../components/Card.vue'
export default {
components: { Card },
data() {
return {}
}
}
</script>
<style lang="less" scoped>
.maxbox{
width: 100%;
height: 100%;
box-sizing: border-box;
padding-top: 8%;
padding-right:5% ;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.btn{
width: 161px;
height: 40px;
line-height: 40px;
text-align: center;
color: #77EDF2;
font-size: 20px;
margin-left: 5%;
background-image: url(.././assets/images/progress/bgc2.png);
background-size: 100%;
background-repeat: no-repeat;
}
}
</style>