diff --git a/src/project/saas/AppBuilding/AppBuilding.vue b/src/project/saas/AppBuilding/AppBuilding.vue index a4b63291..7e4a3768 100644 --- a/src/project/saas/AppBuilding/AppBuilding.vue +++ b/src/project/saas/AppBuilding/AppBuilding.vue @@ -16,25 +16,19 @@ import {mapState} from "vuex"; export default { name: 'AppBuilding', components: {SearchMap}, - appName: '以房找人', + appName: '人房地图', computed: { ...mapState(['user']), isGridMember() { return this.user.girdCheckType > 0 } }, + data() { return { show: true, } - }, - onShow() { - // this.show = false - // this.$nextTick(() => { - // this.show = true - // }) - document.title = "以房找人" - }, + } }