2022-08-25 10:25:32 +08:00
|
|
|
<template>
|
|
|
|
|
<Card title="大面积混泥土展示">
|
2022-08-27 14:56:53 +08:00
|
|
|
<div class="chart"></div>
|
|
|
|
|
<div class="btn">远程验收</div>
|
2022-08-25 10:25:32 +08:00
|
|
|
</Card>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import Card from '../components/Card.vue'
|
|
|
|
|
export default {
|
|
|
|
|
components: { Card }
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
2022-08-27 14:56:53 +08:00
|
|
|
<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>
|