diff --git a/src/apps/AppMarryAndDie/AllActiveList.vue b/src/apps/AppMarryAndDie/AllActiveList.vue
index 2b28c546..2fc700b8 100644
--- a/src/apps/AppMarryAndDie/AllActiveList.vue
+++ b/src/apps/AppMarryAndDie/AllActiveList.vue
@@ -45,7 +45,7 @@
-
![]()
+
@@ -147,6 +147,13 @@ export default {
}
})
},
+
+ previewImage(images, img) {
+ uni.previewImage({
+ urls: images.map((v) => v.url),
+ current: img,
+ })
+ },
},
onReachBottom() {
this.current = this.current + 1
diff --git a/src/apps/AppMarryAndDie/AppMarryAndDie.vue b/src/apps/AppMarryAndDie/AppMarryAndDie.vue
index a44b4a3e..ce2370a9 100644
--- a/src/apps/AppMarryAndDie/AppMarryAndDie.vue
+++ b/src/apps/AppMarryAndDie/AppMarryAndDie.vue
@@ -80,7 +80,7 @@
-
![]()
+
@@ -297,6 +297,13 @@ export default {
this.getList()
}
},
+
+ previewImage(images, img) {
+ uni.previewImage({
+ urls: images.map((v) => v.url),
+ current: img,
+ })
+ },
},
onReachBottom() {
this.current = this.current + 1
diff --git a/src/apps/AppMarryAndDie/CadreList.vue b/src/apps/AppMarryAndDie/CadreList.vue
index 8d004f53..59e9f325 100644
--- a/src/apps/AppMarryAndDie/CadreList.vue
+++ b/src/apps/AppMarryAndDie/CadreList.vue
@@ -45,7 +45,7 @@
-
![]()
+
@@ -147,6 +147,13 @@ export default {
}
})
},
+
+ previewImage(images, img) {
+ uni.previewImage({
+ urls: images.map((v) => v.url),
+ current: img,
+ })
+ },
},
onReachBottom() {
this.current = this.current + 1
diff --git a/src/apps/AppMarryAndDie/FuneralList.vue b/src/apps/AppMarryAndDie/FuneralList.vue
index bf79009e..107a40cc 100644
--- a/src/apps/AppMarryAndDie/FuneralList.vue
+++ b/src/apps/AppMarryAndDie/FuneralList.vue
@@ -45,7 +45,7 @@
-
![]()
+
@@ -147,6 +147,13 @@ export default {
}
})
},
+
+ previewImage(images, img) {
+ uni.previewImage({
+ urls: images.map((v) => v.url),
+ current: img,
+ })
+ },
},
onReachBottom() {
this.current = this.current + 1
diff --git a/src/apps/AppMarryAndDie/MarryList.vue b/src/apps/AppMarryAndDie/MarryList.vue
index 93340984..51545daa 100644
--- a/src/apps/AppMarryAndDie/MarryList.vue
+++ b/src/apps/AppMarryAndDie/MarryList.vue
@@ -45,7 +45,7 @@
-
![]()
+
@@ -147,6 +147,13 @@ export default {
}
})
},
+
+ previewImage(images, img) {
+ uni.previewImage({
+ urls: images.map((v) => v.url),
+ current: img,
+ })
+ },
},
onReachBottom() {
this.current = this.current + 1
diff --git a/src/apps/AppResidentActivitie/AppResidentActivities.vue b/src/apps/AppResidentActivitie/AppResidentActivities.vue
index c525a789..40d83ab0 100644
--- a/src/apps/AppResidentActivitie/AppResidentActivities.vue
+++ b/src/apps/AppResidentActivitie/AppResidentActivities.vue
@@ -32,7 +32,7 @@
{{ item.areaName }}{{ item.address }}
-
+
{{ $dict.getLabel('villageActivityStatus', item.status) }}
@@ -128,6 +128,13 @@ export default {
toDetail(item) {
uni.navigateTo({ url: `./Detail?id=${item.id}&createUserId=${item.createUserId}` })
},
+
+ previewImage(images, img) {
+ uni.previewImage({
+ urls: images.map((v) => v.url),
+ current: img,
+ })
+ },
},
onReachBottom() {
this.current = this.current + 1
diff --git a/src/apps/AppResidentActivitie/Detail.vue b/src/apps/AppResidentActivitie/Detail.vue
index 097aca6b..f1c536cb 100644
--- a/src/apps/AppResidentActivitie/Detail.vue
+++ b/src/apps/AppResidentActivitie/Detail.vue
@@ -2,7 +2,7 @@