diff --git a/src/project/saas/AppCooperationPropaganda/cooperationDetail.vue b/src/project/saas/AppCooperationPropaganda/cooperationDetail.vue index d39702bd..1349aa4e 100644 --- a/src/project/saas/AppCooperationPropaganda/cooperationDetail.vue +++ b/src/project/saas/AppCooperationPropaganda/cooperationDetail.vue @@ -31,8 +31,8 @@ 数据更新于{{ info.remindTime }}
-
- +
+
计划送达居民群: {{ info.planCount || 0 }} @@ -48,8 +48,7 @@
- -
提醒成员发送
+
提醒成员发送
@@ -187,6 +186,7 @@ export default { if (res?.data) { this.tableData = res.data.executedList; } + this.getPieEcharts() }); }, diff --git a/src/project/saas/AppCooperationPropaganda/detail.vue b/src/project/saas/AppCooperationPropaganda/detail.vue index 20fe1a57..3816f570 100644 --- a/src/project/saas/AppCooperationPropaganda/detail.vue +++ b/src/project/saas/AppCooperationPropaganda/detail.vue @@ -20,6 +20,10 @@ {{ data.choiceTime }} +
+ + +
@@ -31,7 +35,7 @@
{{ content[0].content }}
- +
@@ -68,6 +72,12 @@ export default { } }) }, + previewImage(images, img) { + uni.previewImage({ + urls: images.map(v => v.url), + current: img + }) + }, // 拒绝 refuseBtn() { this.pass = 0 @@ -110,6 +120,7 @@ export default { padding: 32px 32px 120px 32px; box-sizing: border-box; .task { + position: relative; margin-bottom: 24px; background: #FFF; border-radius: 8px; @@ -135,6 +146,15 @@ export default { } } } + .task_results { + position: absolute; + right: 30px; + top: 30px; + img { + width: 160px; + height: 130px; + } + } } .info { diff --git a/src/project/saas/AppCooperationPropaganda/images/pass.png b/src/project/saas/AppCooperationPropaganda/images/pass.png new file mode 100644 index 00000000..36f698b2 Binary files /dev/null and b/src/project/saas/AppCooperationPropaganda/images/pass.png differ diff --git a/src/project/saas/AppCooperationPropaganda/images/refuse.png b/src/project/saas/AppCooperationPropaganda/images/refuse.png new file mode 100644 index 00000000..af15b9e5 Binary files /dev/null and b/src/project/saas/AppCooperationPropaganda/images/refuse.png differ