From d8536ee4f4a72b8234c954a9b2ae6e38b9948dde Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Sat, 06 Jan 2024 15:46:28 +0800
Subject: [PATCH] 议事+报名

---
 subPackage/article/communityList.vue |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/subPackage/article/communityList.vue b/subPackage/article/communityList.vue
index 85984c3..ec1910b 100644
--- a/subPackage/article/communityList.vue
+++ b/subPackage/article/communityList.vue
@@ -32,17 +32,19 @@
 				list: [],
 				currentPage: 1,
 				loadingStatus: 'nomore',
-				eventType: ""
+				eventType: "",
+				type: '',
 			}
 		},
 		onLoad(option) {
-
 			this.eventType = option.type;
 			if (option.type == 0) {
+				this.type = 3
 				uni.setNavigationBarTitle({
 					title: "公益报名"
 				})
 			} else {
+				this.type = 4
 				uni.setNavigationBarTitle({
 					title: "选举调查"
 				})
@@ -91,6 +93,7 @@
 					size: pageSize,
 					articleType: this.tabId,
 					eventType: this.eventType,
+					type: this.type,
 					houseCode: uni.getStorageSync("siteInfo").houseCode
 				}).then(res => {
 					this.$refs.paging.complete(res.data.records);
@@ -105,6 +108,7 @@
 					current: this.currentPage,
 					articleType: this.tabId,
 					eventType: this.eventType,
+					type: this.type,
 					houseCode: uni.getStorageSync("siteInfo").houseCode
 				}
 				const res = await getPage(param)

--
Gitblit v1.9.3