diff --git a/src/apps/AppHandSnapshot/Content.vue b/src/apps/AppHandSnapshot/Content.vue
index d54c3aad..5969a1f5 100644
--- a/src/apps/AppHandSnapshot/Content.vue
+++ b/src/apps/AppHandSnapshot/Content.vue
@@ -136,7 +136,11 @@ export default {
uni.$emit('updateDeatil')
uni.$emit('getListInit')
setTimeout(() => {
- uni.navigateBack()
+ if(this.status == 1) {
+ uni.navigateBack({delta: 2})
+ }else {
+ uni.navigateBack()
+ }
},600)
}
})
diff --git a/src/apps/AppHandSnapshot/Detail.vue b/src/apps/AppHandSnapshot/Detail.vue
index 899f1a32..4ba8c319 100644
--- a/src/apps/AppHandSnapshot/Detail.vue
+++ b/src/apps/AppHandSnapshot/Detail.vue
@@ -114,7 +114,7 @@
我来受理
- 前往办理
+ 前往办理
diff --git a/src/apps/AppVillageDiscuss/Add.vue b/src/apps/AppVillageDiscuss/Add.vue
index 69f0bb60..9e94be74 100644
--- a/src/apps/AppVillageDiscuss/Add.vue
+++ b/src/apps/AppVillageDiscuss/Add.vue
@@ -52,7 +52,7 @@
- 提交方式
+ 投票方式
单选
diff --git a/src/apps/AppVillageDiscuss/Detail.vue b/src/apps/AppVillageDiscuss/Detail.vue
index 52b40380..e2bd0d03 100644
--- a/src/apps/AppVillageDiscuss/Detail.vue
+++ b/src/apps/AppVillageDiscuss/Detail.vue
@@ -67,12 +67,12 @@
-
-
共23人参与投票
+
+
共{{ data.voteCount }}人参与投票
- 查看详情
-
+ 查看详情
+
@@ -307,7 +307,10 @@ export default {
.then((res) => {
if (res?.code == 0) {
this.$u.toast('结束公示成功!')
- this.getDetail()
+
+ setTimeout(() => {
+ this.getDetail()
+ }, 600)
}
})
})
@@ -324,6 +327,7 @@ export default {