2022-08-08 19:02:56 +08:00
|
|
|
<template>
|
|
|
|
|
<Card :title="title">
|
2022-08-15 15:02:14 +08:00
|
|
|
<Table :thead="['变更时间', '变更类型']" :list="modelReport.list" />
|
2022-08-08 19:02:56 +08:00
|
|
|
</Card>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import Card from '../components/Card.vue'
|
|
|
|
|
import Table from '../components/Table.vue'
|
2022-08-15 15:02:14 +08:00
|
|
|
import { modelReport } from '@/assets/json/jlw/bim.json'
|
2022-08-08 19:02:56 +08:00
|
|
|
export default {
|
|
|
|
|
components: { Card, Table },
|
|
|
|
|
props: {
|
|
|
|
|
title: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: 'default title'
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
data() {
|
2022-08-15 15:02:14 +08:00
|
|
|
return { modelReport }
|
2022-08-08 19:02:56 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped></style>
|