This commit is contained in:
yanran200730
2022-08-15 09:17:14 +08:00
parent 8a7f8b749b
commit 9541c0c87b

View File

@@ -16,25 +16,19 @@ import {mapState} from "vuex";
export default { export default {
name: 'AppBuilding', name: 'AppBuilding',
components: {SearchMap}, components: {SearchMap},
appName: '以房找人', appName: '人房地图',
computed: { computed: {
...mapState(['user']), ...mapState(['user']),
isGridMember() { isGridMember() {
return this.user.girdCheckType > 0 return this.user.girdCheckType > 0
} }
}, },
data() { data() {
return { return {
show: true, show: true,
} }
}, }
onShow() {
// this.show = false
// this.$nextTick(() => {
// this.show = true
// })
document.title = "以房找人"
},
} }
</script> </script>