From 4a92213a6db9672fcc2172e868403dd9d323a674 Mon Sep 17 00:00:00 2001 From: aixianling Date: Wed, 8 Jun 2022 10:59:11 +0800 Subject: [PATCH] BUG 30084 --- .../beta/AppGridManagement/Organization.vue | 78 ++++++++++++------- src/saas/AppGridManagement/Organization.vue | 2 +- 2 files changed, 50 insertions(+), 30 deletions(-) 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.girdName}}

+
{{ item.name }}
+
{{ item.checkType == 2 ? '网格长' : '网格员' }}
+

{{ item.girdName }}

-
+
-
{{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 {