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.
26 lines
358 B
26 lines
358 B
|
1 year ago
|
<template>
|
||
|
|
<div class="container">
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: 'houseQR',
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
houesId:this.$route.query.houseId,
|
||
|
|
}
|
||
|
|
},
|
||
|
|
created(){
|
||
|
|
console.log(this.houesId,'房屋Id');
|
||
|
|
},
|
||
|
|
mounted() {
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped lang="less">
|
||
|
|
|
||
|
|
</style>
|