From 3e41ee72b156f6aef1f4f5dcf579271edcd2fddb Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Sat, 11 Nov 2023 09:38:42 +0800
Subject: [PATCH] 通知公告
---
pages/home/index.vue | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/pages/home/index.vue b/pages/home/index.vue
index 5e62845..e776443 100644
--- a/pages/home/index.vue
+++ b/pages/home/index.vue
@@ -136,9 +136,9 @@
</view>
<u-icon name="arrow-right"></u-icon>
</view>
-
+
<view v-for="(item,index) in notice" :key="index">
- <view class="notic-list" @click="navigatorPage('/subPackage/notice/detail')">
+ <view class="notic-list" @click="navigatorPage('/subPackage/notice/detail',item.id)">
<view class="f-28 mb-30">
{{item.title}}
</view>
@@ -157,7 +157,7 @@
</view>
</view>
</view>
-
+
</view>
<u-picker :title="roleTypeName" :closeOnClickOverlay="true" @close="selectBoxShow = false"
:show="selectBoxShow" keyName="name" ref="uPicker" :columns="siteColumns" @confirm="confirmSite"
@@ -576,9 +576,9 @@
this.$u.func.globalNavigator(`/subPackage/bs/views/zhsb?houseCode=${this.curHouseCode}`, "navTo")
},
- navigatorPage(path) {
+ navigatorPage(path, id) {
if (path) {
- this.$u.func.globalNavigator(path, "navTo")
+ this.$u.func.globalNavigator(path + '?id=' + id, "navTo")
}
},
--
Gitblit v1.9.3