diff --git a/src/saas/AppAskForm/PreviewForm.vue b/src/saas/AppAskForm/PreviewForm.vue
index 1e5553fd..6927560f 100644
--- a/src/saas/AppAskForm/PreviewForm.vue
+++ b/src/saas/AppAskForm/PreviewForm.vue
@@ -46,7 +46,7 @@
- 选择图片(2M以内)
+ 选择图片(10M以内)
diff --git a/src/saas/AppAskForm/components/List.vue b/src/saas/AppAskForm/components/List.vue
index 189e7f57..ad44bd72 100644
--- a/src/saas/AppAskForm/components/List.vue
+++ b/src/saas/AppAskForm/components/List.vue
@@ -113,7 +113,7 @@ export default {
}
},
created() {
- this.$loading()
+ // this.$loading()
this.$dict.load(['questionnaireStatus', 'questionnaireType', 'questionnaireFieldType']).then(() => {
this.getList()
})
diff --git a/src/saas/AppGridManagement/Organization.vue b/src/saas/AppGridManagement/Organization.vue
index 94949693..b8d6ce42 100644
--- a/src/saas/AppGridManagement/Organization.vue
+++ b/src/saas/AppGridManagement/Organization.vue
@@ -63,6 +63,7 @@ export default {
})
},
methods: {
+ ...mapActions(['injectJWeixin', 'wxInvoke']),
getGirdUserList() {
this.$http.post(`/app/appgirdmemberinfo/listGirdMemberByGirdId?girdId=${this.userGird.id}`).then((res) => {
if (res.code == 0) {
@@ -74,14 +75,16 @@ export default {
uni.navigateTo({url})
},
viewUser(userId) {
- wx.invoke('openUserProfile', {
- "type": 1, //1表示该userid是企业成员,2表示该userid是外部联系人
- "userid": userId //可以是企业成员,也可以是外部联系人
- }, function(res) {
- if(res.err_msg != "openUserProfile:ok") {
- //错误处理
- }
- });
+ this.injectJWeixin('openUserProfile').then(() => {
+ this.wxInvoke([
+ 'openUserProfile',
+ {
+ type: 1,
+ userid: userId,
+ },
+ () => 0,
+ ])
+ })
},
toFamily(item) {
uni.navigateTo({url: `./FamilyList?id=${item.id}&girdId=${this.userGird.id}`})