活动中心ui暂时提交

feasure-livedata
lld 2026-03-27 00:39:51 +08:00
parent d7478792fe
commit 0b65db118a
1 changed files with 8 additions and 0 deletions

View File

@ -5,6 +5,7 @@
<view <view
v-for="(item, index) in messageList" v-for="(item, index) in messageList"
:key="index" :key="index"
@click="gotoDetail(item)"
class="message-item" class="message-item"
> >
<!-- 图片区域带未读角标 + 渐变遮罩 --> <!-- 图片区域带未读角标 + 渐变遮罩 -->
@ -71,6 +72,13 @@ export default {
handleLink() { handleLink() {
// "" // ""
uni.showToast({ title: "跳转到认证页" }) uni.showToast({ title: "跳转到认证页" })
},
gotoDetail(item) {
uni.showToast({ title: "跳转到详情页" })
//
uni.navigateTo({
url: "/pages/news/subpages/eventDetail/index?title=" + item.title
})
} }
} }
} }