diff --git a/src/apps/AppVillageDiscuss/AppVillageDiscuss.vue b/src/apps/AppVillageDiscuss/AppVillageDiscuss.vue index bd406923..fdfbbba5 100644 --- a/src/apps/AppVillageDiscuss/AppVillageDiscuss.vue +++ b/src/apps/AppVillageDiscuss/AppVillageDiscuss.vue @@ -45,7 +45,6 @@
-
@@ -101,6 +100,7 @@ export default { this.$areaId = this.user.areaName this.areaName = this.user.areaName + this.areaId = this.user.areaId this.getList() uni.$on('update', () => { @@ -219,6 +219,15 @@ export default { padding-bottom: 10px; background: #f2f2f2; + ::v-deep .AiCard { + border-radius: 0!important; + box-shadow: none; + + .start { + border-radius: 0!important; + } + } + .areatop { display: flex; justify-content: space-between; diff --git a/src/apps/AppVillageDiscuss/Detail.vue b/src/apps/AppVillageDiscuss/Detail.vue index 9bc2abad..db601c2e 100644 --- a/src/apps/AppVillageDiscuss/Detail.vue +++ b/src/apps/AppVillageDiscuss/Detail.vue @@ -1,5 +1,5 @@ @@ -253,8 +251,10 @@ export default { handleComplete() { this.$confirm('是否要结束公示') .then(() => { - let { id } = this - this.$http.post('/app/appvillagediscuss/finishPublic', { id }).then((res) => { + this.$http.post('/app/appvillagediscuss/finishPublic', { + status: '2', + id: this.id + }).then((res) => { if (res?.code == 0) { this.$u.toast('已结束公示!') this.getDetail() @@ -269,7 +269,25 @@ export default {