- 家庭地址
+ 籍贯
{{ data.resident.birthplaceAreaName }}
@@ -81,7 +81,7 @@
联系方式
- {{ data.resident.phone }}
+ {{ data.resident.phone }}
@@ -139,6 +139,9 @@ export default {
}
})
},
+ callPhone(phone) {
+ uni.makePhoneCall({ phoneNumber: phone })
+ },
},
}
diff --git a/src/apps/AppServicePublic/AppServicePublic.vue b/src/apps/AppServicePublic/AppServicePublic.vue
index f406a70c..4441d84e 100644
--- a/src/apps/AppServicePublic/AppServicePublic.vue
+++ b/src/apps/AppServicePublic/AppServicePublic.vue
@@ -95,6 +95,7 @@ export default {
uni.$on('update' , () => {
this.getList()
})
+ uni.setNavigationBarTitle({title: this.listName})
},
methods: {
getType() {
diff --git a/src/apps/AppUniMsg/Detail.vue b/src/apps/AppUniMsg/Detail.vue
index d80b7641..3866687c 100644
--- a/src/apps/AppUniMsg/Detail.vue
+++ b/src/apps/AppUniMsg/Detail.vue
@@ -13,7 +13,7 @@
{{ data.content }}
-
![]()
+
@@ -48,6 +48,12 @@ export default {
}
})
},
+ previewImage (images, img) {
+ uni.previewImage({
+ urls: images.map(v => v.url),
+ current: img
+ })
+ },
},
}