26 lines
515 B
Vue
26 lines
515 B
Vue
<template>
|
|
<Card :title="title">
|
|
<Table :thead="['变更时间', '变更类型']" :list="modelReport.list" />
|
|
</Card>
|
|
</template>
|
|
|
|
<script>
|
|
import Card from '../components/Card.vue'
|
|
import Table from '../components/Table.vue'
|
|
import { modelReport } from '@/assets/json/jlw/bim.json'
|
|
export default {
|
|
components: { Card, Table },
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
default: 'default title'
|
|
}
|
|
},
|
|
data() {
|
|
return { modelReport }
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped></style>
|