diff --git a/src/project/beta/AppGridManagement/Organization.vue b/src/project/beta/AppGridManagement/Organization.vue
index 4d1536e7..b2616c15 100644
--- a/src/project/beta/AppGridManagement/Organization.vue
+++ b/src/project/beta/AppGridManagement/Organization.vue
@@ -8,26 +8,27 @@
+
-
{{item.name}}
-
{{item.checkType == 2 ? '网格长' : '网格员'}}
-
责任家庭 >
+
{{ item.name }}
+ {{ item.checkType == 2 ? '网格长' : '网格员' }}
+ 责任家庭 >
-
{{item.girdName}}
+
{{ item.girdName }}
-
+
@@ -43,7 +44,7 @@ export default {
props: ['params'],
onShow() {
document.title = '网格管理'
-
+
},
mounted() {
this.userGird = this.params
@@ -51,7 +52,7 @@ export default {
uni.$on('goback', (res) => {
this.userGird = res
this.getGirdUserList()
- })
+ })
},
methods: {
getGirdUserList() {
@@ -63,7 +64,12 @@ export default {
},
linkTo(url) {
uni.navigateTo({url})
- }
+ },
+ viewUser(userid) {
+ userid && this.injectJWeixin('openUserProfile').then(() => {
+ this.wxInvoke(['openUserProfile', {type: 1, userid}, () => 0])
+ })
+ },
},
}
@@ -71,7 +77,8 @@ export default {