很多页面

This commit is contained in:
haomingming
2025-09-03 17:13:10 +08:00
parent 92bfc36d51
commit 84f59b20f6
26 changed files with 29536 additions and 616 deletions
+233 -72
View File
@@ -4,6 +4,8 @@
<uni-nav-bar
left-icon="left"
title="消息"
right-text="清除"
@clickRight="clearMsg"
@clickLeft="goBack"
fixed
color="#8B2316"
@@ -19,25 +21,28 @@
<view class="grid-item" @click="goBenefit">
<view class="icon-wrap gift">
<uni-icons type="gift" size="34" color="#fff"></uni-icons>
<view class="badge" v-if="badgeData.Module_Welfare > 0">{{ badgeData.Module_Welfare }}</view>
</view>
<text class="label">福利</text>
</view>
<view class="grid-item" @click="goOrder">
<view class="icon-wrap order">
<uni-icons type="list" size="34" color="#fff"></uni-icons>
<view class="badge" v-if="badgeData.Module_Order > 0">{{ badgeData.Module_Order }}</view>
</view>
<text class="label">订单</text>
</view>
<view class="grid-item" @click="goFollow">
<view class="icon-wrap visit">
<uni-icons type="heart" size="34" color="#fff"></uni-icons>
<view class="badge" v-if="followBadge > 0">{{ followBadge }}</view>
<view class="badge" v-if="badgeData.Module_Relation > 0">{{ badgeData.Module_Relation }}</view>
</view>
<text class="label">随访</text>
</view>
<view class="grid-item" @click="goReply">
<view class="icon-wrap reply">
<uni-icons type="chatbubble" size="34" color="#fff"></uni-icons>
<view class="badge" v-if="badgeData.Module_Comment > 0">{{ badgeData.Module_Comment }}</view>
</view>
<text class="label">回复我的</text>
</view>
@@ -54,13 +59,35 @@
@scrolltolower="onLoadMore"
lower-threshold="80"
>
<view class="group" v-for="(group, gIdx) in msgGroups" :key="gIdx">
<view class="group-time">{{ group.time }}</view>
<view class="card" v-for="(msg, idx) in group.items" :key="idx">
<view class="card-title">系统消息</view>
<view class="card-content">{{ msg }}</view>
<!-- 回复我的模块 - 聊天列表样式 -->
<view v-if="currentModule === 4" class="chat-list">
<view class="chat-item" v-for="(msg, idx) in msgList" :key="msg.id">
<view class="avatar">
<image :src="msg.avatar || '/static/default-avatar.png'" mode="aspectFill" @error="handleImageError"></image>
</view>
<view class="chat-content">
<view class="chat-header">
<text class="sender-name">{{ msg.sender_name || msg.title }}</text>
<text class="chat-time">{{ msg.create_date }}</text>
</view>
<view class="message-preview">{{ msg.content }}</view>
</view>
</view>
</view>
<!-- 其他模块 - 卡片样式 -->
<view v-else>
<view class="card" v-for="(msg, idx) in msgList" :key="msg.id">
<view class="card-title">{{ msg.title }}</view>
<view class="card-content">{{ msg.content }}</view>
<view class="card-time">{{ msg.create_date }}</view>
</view>
</view>
<!-- 空状态 -->
<view v-if="msgList.length === 0" class="empty-state">
<text class="empty-text">暂无消息</text>
</view>
<!-- 加载更多提示 -->
<view v-if="loading" class="loading-more">
<text class="loading-text">加载中...</text>
@@ -74,24 +101,21 @@
</template>
<script setup>
import { ref } from 'vue';
import { onMounted, ref } from 'vue';
import api from '@/api/api.js';
import docUrl from '@/utils/docUrl';
const followBadge = ref(5);
// 角标数据
const badgeData = ref({
Module_Order: 0, // 订单
Module_Comment: 0, // 回复我的
Module_Welfare: 0, // 福利
Module_Relation: 0 // 随访
});
const msgGroups = ref([
{
time: '2022-04-22 16:32:54',
items: ['恭喜您,您的肝胆积分又增加了,快去查看吧']
},
{
time: '2022-04-20 13:33:23',
items: ['恭喜您,您的肝胆积分又增加了,快去查看吧']
},
{
time: '2022-04-15 13:36:23',
items: ['恭喜您,您的肝胆积分又增加了,快去查看吧']
}
]);
// 消息列表数据
const msgList = ref([]);
const currentModule = ref(1); // 当前选中的模块,默认显示模块1的消息
// 刷新/加载状态
const refreshing = ref(false);
@@ -100,13 +124,7 @@
const page = ref(1);
const pageSize = ref(10);
// 模拟更多数据(请在接入接口后替换)
const mockMore = [
{ time: '2022-04-10 09:20:11', items: ['系统保养完成,服务更稳定~'] },
{ time: '2022-04-05 18:06:42', items: ['积分到账提醒,请注意查收。'] },
{ time: '2022-03-30 08:15:00', items: ['本周学术会议日程已发布。'] },
{ time: '2022-03-25 10:05:16', items: ['您有新的随访任务待处理。'] }
];
const goBack = () => {
uni.navigateBack({
@@ -118,23 +136,46 @@
});
};
const goBenefit = () => uni.showToast({ title: '福利', icon: 'none' });
const goOrder = () => uni.showToast({ title: '订单', icon: 'none' });
const goFollow = () => uni.showToast({ title: '随访', icon: 'none' });
const goReply = () => uni.showToast({ title: '回复我的', icon: 'none' });
const goBenefit = () => {
currentModule.value = 1;
getAppMesageList(1);
};
const goOrder = () => {
currentModule.value = 2;
getAppMesageList(2);
};
const goFollow = () => {
currentModule.value = 3;
getAppMesageList(3);
};
const goReply = () => {
currentModule.value = 4;
getAppMesageList(4);
};
const clearMsg = () => {
uni.showModal({
title: '提醒',
content: '是否要清除所有未读消息?',
success: (res) => {
if (res.confirm) {
api.appMesageRead({}).then(res => {
console.log(res);
});
getUnReadList();
}
}
});
}
// 下拉刷新
const onRefresh = async () => {
if (refreshing.value) return;
refreshing.value = true;
try {
await new Promise(r => setTimeout(r, 800));
page.value = 1;
noMore.value = false;
msgGroups.value.unshift({
time: new Date().toISOString().slice(0, 19).replace('T', ' '),
items: ['您有一条新的系统通知,欢迎查看。']
});
// 重新获取当前模块的消息列表
getAppMesageList(currentModule.value);
// 重新获取未读消息数量
getUnReadList();
} finally {
refreshing.value = false;
}
@@ -145,19 +186,73 @@
if (loading.value || noMore.value) return;
loading.value = true;
try {
await new Promise(r => setTimeout(r, 800));
const start = (page.value - 1) * 2;
const chunk = mockMore.slice(start, start + 2);
if (chunk.length === 0) {
noMore.value = true;
} else {
msgGroups.value.push(...chunk);
page.value += 1;
}
// 这里可以根据需要实现分页加载
// 目前接口返回的数据已经包含了分页信息
// 如果需要加载更多,可以调用 getAppMesageList 并传入页码参数
noMore.value = true; // 暂时设置为没有更多数据
} finally {
loading.value = false;
}
};
const getUnReadList = () => {
api.unReadList({}).then(res => {
console.log(res);
if (res.code === 200 && res.data) {
// 更新角标数据
badgeData.value = {
Module_Order: parseInt(res.data.Module_Order) || 0,
Module_Comment: parseInt(res.data.Module_Comment) || 0,
Module_Welfare: parseInt(res.data.Module_Welfare) || 0,
Module_Relation: parseInt(res.data.Module_Relation) || 0
};
}
}).catch(err => {
console.error('获取未读消息列表失败:', err);
});
};
const getAppMesageList = (module) => {
api.appMesageList({module: module}).then(res => {
console.log(res);
if (res.code === 200 && res.data && res.data.list) {
// 更新消息列表数据
msgList.value = res.data.list.map(item => ({
id: item.id,
title: item.title,
content: item.content,
create_date: item.create_date,
is_read: item.is_read,
extra: item.extra,
// 从extra字段提取用户信息
sender_name: item.extra?.user_name || item.title,
avatar: item.extra?.user_photo ?
(item.extra.user_photo.startsWith('http') ?
item.extra.user_photo :
`${getBaseUrl()}${item.extra.user_photo}`) :
'/static/default-avatar.png'
}));
}
}).catch(err => {
console.error('获取消息列表失败:', err);
});
};
// 获取基础URL
const getBaseUrl = () => {
return docUrl;
};
// 图片加载错误处理
const handleImageError = (e) => {
// 设置默认头像
e.target.src = '/static/default-avatar.png';
};
onMounted(() => {
getUnReadList();
getAppMesageList(1);
});
</script>
<style lang="scss" scoped>
@@ -243,41 +338,107 @@
box-sizing: border-box;
bottom: 0rpx;
// 加载状态样式
.loading-more, .no-more {
.loading-more, .no-more, .empty-state {
@include flex-center;
padding: 28rpx 0;
.loading-text, .no-more-text {
.loading-text, .no-more-text, .empty-text {
font-size: 26rpx;
color: $muted;
}
}
.group {
.group-time {
text-align: center;
color: $muted;
font-size: 24rpx;
margin: 26rpx 0 16rpx;
.card {
background: #fff;
border-radius: 16rpx;
padding: 26rpx;
box-shadow: 0 6rpx 20rpx rgba(0, 0, 0, 0.04);
margin-top: 26rpx;
.card-title {
font-size: 30rpx;
color: $text-primary;
font-weight: 600;
margin-bottom: 14rpx;
}
.card {
background: #fff;
border-radius: 16rpx;
padding: 26rpx;
box-shadow: 0 6rpx 20rpx rgba(0, 0, 0, 0.04);
margin-bottom: 26rpx;
.card-content {
font-size: 28rpx;
color: $text-secondary;
line-height: 1.6;
margin-bottom: 14rpx;
}
.card-title {
font-size: 30rpx;
color: $text-primary;
font-weight: 600;
margin-bottom: 14rpx;
.card-time {
font-size: 24rpx;
color: $muted;
text-align: right;
}
}
// 聊天列表样式
.chat-list {
.chat-item {
display: flex;
align-items: center;
padding: 24rpx;
border-bottom: 1rpx solid #f0f0f0;
background: #fff;
margin-top: 24rpx;
&:last-child {
border-bottom: none;
}
.card-content {
font-size: 28rpx;
color: $text-secondary;
line-height: 1.6;
.avatar {
width: 88rpx;
height: 88rpx;
border-radius: 50%;
overflow: hidden;
margin-right: 24rpx;
flex-shrink: 0;
image {
width: 100%;
height: 100%;
}
}
.chat-content {
flex: 1;
min-width: 0;
.chat-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8rpx;
.sender-name {
font-size: 30rpx;
color: $text-primary;
font-weight: 500;
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.chat-time {
font-size: 24rpx;
color: $muted;
flex-shrink: 0;
margin-left: 16rpx;
}
}
.message-preview {
font-size: 28rpx;
color: $text-secondary;
line-height: 1.4;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
}
}