市北互联平台前端仓库
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.

34 lines
677 B

4 years ago
<template>
<div>
<div class="m-info">
<h2>社区查询</h2>
</div>
</div>
</template>
<script>
export default {
data() {
return {
// i18nMessages: messages,
updatePassowrdVisible: false,
customerName: localStorage.getItem('customerName'),
userType: localStorage.getItem('userType')
}
},
components: {},
mounted() {
//关闭所有标签页
// tabs, 关闭全部
this.$store.state.contentTabs = this.$store.state.contentTabs.filter(
(item) => item.name === 'home'
)
},
methods: {
changeCustomerName(customerName) {
this.$emit('changeCustomerName', customerName)
}
}
}
</script>