You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

190 lines
4.1 KiB

<template>
<view class="message-page" :class="{ 'wechat-browser': isWeixinBrowser }">
<view class="header-title" :class="{ 'hide-in-wechat': isWeixinBrowser }">消息</view>
<view class="message-list">
6 months ago
<view
v-for="(item, idx) in noticeList"
:key="item.id"
class="message-card"
>
<view class="message-card-header">
6 months ago
<view class="tag" :style="{ background: tagColors[idx % tagColors.length] }">
<text class="tag-text">{{ item.type_name }}</text>
</view>
<view class="date">{{ formatChinaDate(item.created_at) }}</view>
</view>
6 months ago
<view class="message-title">{{ item.title }}</view>
<view class="message-content">{{ item.content }}</view>
</view>
</view>
</view>
</template>
<script>
import { base } from '@/common/util.js'
6 months ago
import { API } from '@/config/index.js';
export default {
6 months ago
name: 'MessagePage',
data() {
return {
6 months ago
noticeList: [],
isWeixinBrowser: false,
6 months ago
tagColors: [
'linear-gradient(90deg, #ffb980 0%, #ffc99a 100%)',
'linear-gradient(90deg, #217aff 0%, #3b7cff 100%)',
'linear-gradient(90deg, #ff5c5c 0%, #ff7a7a 100%)',
'linear-gradient(90deg, #22c58b 0%, #2ed9a3 100%)',
'#f39c12', '#8e44ad', '#16a085'
]
6 months ago
}
},
onLoad() {
// #ifdef H5
this.isWeixinBrowser = /MicroMessenger/i.test(navigator.userAgent)
// #endif
},
6 months ago
onShow() {
this.fetchNotifications();
},
methods: {
formatChinaDate: base.formatChinaDate,
6 months ago
async fetchNotifications() {
const token = uni.getStorageSync('token');
if (!token) return;
try {
const res = await new Promise((resolve, reject) => {
uni.request({
6 months ago
url: `${API.NOTIFICATION_LIST}?token=${token}`,
6 months ago
method: 'GET',
success: resolve,
fail: reject
});
});
if (res.data && res.data.errcode === 0) {
6 months ago
this.noticeList = Array.isArray(res.data.data.data) ? res.data.data.data : [];
6 months ago
}
} catch (e) {
console.error('Failed to fetch notifications:', e);
}
6 months ago
}
}
}
</script>
<style scoped>
.message-page {
background: linear-gradient(180deg, #cbe6ff 0%, #f6faff 100%);
min-height: 100vh;
padding-bottom: 80px;
font-family: 'SourceHanSansCN', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
.wechat-browser {
margin-top: -44rpx;
}
.header-title {
text-align: center;
font-size: 36rpx;
font-weight: bold;
padding-top: 7vh;
letter-spacing: 2rpx;
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 16px 10px 16px;
background: linear-gradient(180deg, #cbe6ff 0%, #f6faff 100%);
}
.back-btn, .more-btn {
font-size: 24px;
color: #333;
}
.title {
font-size: 22px;
font-weight: bold;
color: #222;
}
.message-list {
padding: 10px 0 0 0;
margin-top: 44rpx;
}
.message-card {
background: #fff;
border-radius: 10px;
margin: 0 16px 16px 16px;
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
padding: 18px 18px 12px 18px;
height: 272rpx;
}
.message-card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
}
.tag {
font-size: 22rpx;
padding: 4rpx 18rpx;
border-radius: 8rpx;
margin-right: 24rpx;
white-space: nowrap;
color: #fff;
display: inline-block;
font-weight: 500;
border: none;
6 months ago
transform: skewX(-20deg);
}
.tag-text {
display: inline-block;
transform: skewX(20deg);
}
6 months ago
.date {
color: #173766;
font-size: 15px;
}
.message-title {
font-size: 16px;
font-weight: 550;
margin-bottom: 12px;
color: #222;
margin-top: 12px;
}
.message-content {
color: #355;
font-size: 14px;
color: #173766;
}
.tabbar {
position: fixed;
left: 0;
right: 0;
bottom: 0;
height: 60px;
background: #fff;
display: flex;
border-top: 1px solid #eaeaea;
z-index: 10;
}
.tab-item {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #888;
font-size: 14px;
}
.tab-item.active {
color: #217aff;
}
.icon {
font-size: 22px;
margin-bottom: 2px;
}
.hide-in-wechat {
display: none !important;
}
</style>