湖里大屏(BIM中心):mock 设计变更数据

This commit is contained in:
Jack 2022-08-15 15:02:14 +08:00
parent 3a2321654e
commit 046e6218a6
2 changed files with 15 additions and 2 deletions

View File

@ -30,5 +30,17 @@
{ "changeTime": "2022/03/06 15:30:26", "changeType": "临边防护" }, { "changeTime": "2022/03/06 15:30:26", "changeType": "临边防护" },
{ "changeTime": "2022/03/06 15:30:26", "changeType": "临边防护" } { "changeTime": "2022/03/06 15:30:26", "changeType": "临边防护" }
] ]
},
"designChange": {
"list": [
{ "changeTime": "2022/03/06 15:30:26", "changeType": "临边防护" },
{ "changeTime": "2022/03/06 15:30:26", "changeType": "临边防护" },
{ "changeTime": "2022/03/06 15:30:26", "changeType": "扣件式钢管脚手架" },
{ "changeTime": "2022/03/06 15:30:26", "changeType": "临边防护" },
{ "changeTime": "2022/03/06 15:30:26", "changeType": "临边防护" },
{ "changeTime": "2022/03/06 15:30:26", "changeType": "临边防护" },
{ "changeTime": "2022/03/06 15:30:26", "changeType": "临边防护" },
{ "changeTime": "2022/03/06 15:30:26", "changeType": "临边防护" }
]
} }
} }

View File

@ -1,12 +1,13 @@
<template> <template>
<Card :title="title"> <Card :title="title">
<Table :thead="['变更时间', '变更类型']" /> <Table :thead="['变更时间', '变更类型']" :list="modelReport.list" />
</Card> </Card>
</template> </template>
<script> <script>
import Card from '../components/Card.vue' import Card from '../components/Card.vue'
import Table from '../components/Table.vue' import Table from '../components/Table.vue'
import { modelReport } from '@/assets/json/jlw/bim.json'
export default { export default {
components: { Card, Table }, components: { Card, Table },
props: { props: {
@ -16,7 +17,7 @@ export default {
} }
}, },
data() { data() {
return {} return { modelReport }
} }
} }
</script> </script>