33 lines
616 B
Vue
Raw Normal View History

<template>
<Card title="大面积混泥土展示">
<div class="chart"></div>
<div class="btn">远程验收</div>
</Card>
</template>
<script>
import Card from '../components/Card.vue'
export default {
components: { Card }
}
</script>
<style lang="less" scoped>
.chart {
width: 100%;
height: calc(100% - 71px);
}
.btn {
margin: 8px auto;
width: calc(100% - 40px);
height: 55px;
line-height: 55px;
text-align: center;
font-size: 28px;
font-weight: bold;
color: #02d5d2;
background: url(../assets/images/sourse/bg-car-count.png) no-repeat;
background-size: 100% 100%;
}
</style>