25 lines
511 B
Vue
Raw Normal View History

2022-08-02 09:10:00 +08:00
<template>
<Card :title="title">
<CountList :allCount="{ value: 22, label: '塔吊总数' }" :todayCount="{ value: 65, label: '今日报警总数' }" :list="[]" />
</Card>
2022-08-02 09:10:00 +08:00
</template>
<script>
import Card from '../components/Card.vue'
import CountList from '../components/CountList.vue'
2022-08-02 09:10:00 +08:00
export default {
components: { Card, CountList },
2022-08-02 09:10:00 +08:00
props: {
title: {
type: String,
default: 'default title'
2022-08-02 09:10:00 +08:00
}
},
data() {
return {}
2022-08-02 09:10:00 +08:00
}
}
</script>
2022-08-02 09:10:00 +08:00
<style lang="less" scoped></style>