You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
293 B
22 lines
293 B
3 years ago
|
<template>
|
||
|
<div>房屋概览</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { requestPost } from "@/js/dai/request";
|
||
|
|
||
|
export default {
|
||
|
props: {
|
||
|
orgId: {
|
||
|
type: String,
|
||
|
default: "",
|
||
|
},
|
||
|
},
|
||
|
data() {},
|
||
|
mounted() {},
|
||
|
methods: {},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped></style>
|