200 lines
5.3 KiB
Vue
200 lines
5.3 KiB
Vue
<template>
|
|
<view class="yd-page-container">
|
|
<!-- 顶部导航栏 -->
|
|
<wd-navbar
|
|
title="我的消息"
|
|
placeholder safe-area-inset-top fixed
|
|
/>
|
|
|
|
<!-- 搜索组件 -->
|
|
<SearchForm @search="handleQuery" @reset="handleReset" @read-all="handleReadAll" />
|
|
|
|
<!-- 消息列表 -->
|
|
<view class="p-24rpx">
|
|
<view
|
|
v-for="item in list"
|
|
:key="item.id"
|
|
class="mb-24rpx overflow-hidden rounded-12rpx bg-white shadow-sm"
|
|
@click="handleDetail(item)"
|
|
>
|
|
<view class="p-24rpx">
|
|
<!-- 消息头部 -->
|
|
<view class="mb-16rpx flex items-center justify-between">
|
|
<view class="flex items-center">
|
|
<view
|
|
v-if="!item.readStatus"
|
|
class="mr-8rpx h-12rpx w-12rpx flex-shrink-0 rounded-full bg-red-500"
|
|
/>
|
|
<view class="text-32rpx text-[#333] font-semibold">
|
|
{{ item.templateNickname }}
|
|
</view>
|
|
</view>
|
|
<view class="text-26rpx text-[#999]">
|
|
{{ formatDateTime(item.createTime) }}
|
|
</view>
|
|
</view>
|
|
<!-- 消息内容 -->
|
|
<view class="mb-12rpx rounded-8rpx bg-[#f7f8f9] p-20rpx">
|
|
<view class="line-clamp-1 mb-8rpx text-30rpx text-[#323333] font-bold">
|
|
{{ getDictLabel(DICT_TYPE.SYSTEM_NOTIFY_TEMPLATE_TYPE, item.templateType) }}
|
|
</view>
|
|
<view class="line-clamp-2 text-28rpx text-[#777]">
|
|
{{ item.templateContent }}
|
|
</view>
|
|
</view>
|
|
<!-- 底部操作区 -->
|
|
<view class="flex items-center justify-between text-26rpx text-[#999]">
|
|
<view
|
|
v-if="!item.readStatus"
|
|
class="text-[#1890ff]"
|
|
@click.stop="handleReadOne(item)"
|
|
>
|
|
标记已读
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 加载更多 -->
|
|
<view v-if="loadMoreState !== 'loading' && list.length === 0" class="py-100rpx text-center">
|
|
<wd-status-tip image="content" tip="暂无消息" />
|
|
</view>
|
|
<wd-loadmore
|
|
v-if="list.length > 0"
|
|
:state="loadMoreState"
|
|
@reload="loadMore"
|
|
/>
|
|
</view>
|
|
|
|
<!-- 详情弹窗 -->
|
|
<DetailPopup ref="detailPopupRef" />
|
|
</view>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import type { NotifyMessage } from '@/api/system/notify/message'
|
|
import type { LoadMoreState } from '@/http/types'
|
|
import { onReachBottom } from '@dcloudio/uni-app'
|
|
import { onMounted, ref } from 'vue'
|
|
import { useToast } from 'wot-design-uni'
|
|
import {
|
|
getMyNotifyMessagePage,
|
|
updateAllNotifyMessageRead,
|
|
updateNotifyMessageRead,
|
|
} from '@/api/system/notify/message'
|
|
import { getDictLabel } from '@/hooks/useDict'
|
|
import { DICT_TYPE } from '@/utils/constants'
|
|
import { formatDateTime } from '@/utils/date'
|
|
import DetailPopup from './components/detail-popup.vue'
|
|
import SearchForm from './components/search-form.vue'
|
|
|
|
definePage({
|
|
style: {
|
|
navigationBarTitleText: '',
|
|
navigationStyle: 'custom',
|
|
},
|
|
})
|
|
|
|
const toast = useToast()
|
|
const total = ref(0)
|
|
const list = ref<NotifyMessage[]>([])
|
|
const loadMoreState = ref<LoadMoreState>('loading')
|
|
const queryParams = ref({
|
|
pageNo: 1,
|
|
pageSize: 10,
|
|
})
|
|
const detailPopupRef = ref<InstanceType<typeof DetailPopup>>() // 详情弹窗
|
|
|
|
/** 查询消息列表 */
|
|
async function getList() {
|
|
loadMoreState.value = 'loading'
|
|
try {
|
|
const data = await getMyNotifyMessagePage(queryParams.value)
|
|
list.value = [...list.value, ...data.list]
|
|
total.value = data.total
|
|
loadMoreState.value = list.value.length >= total.value ? 'finished' : 'loading'
|
|
} catch {
|
|
queryParams.value.pageNo = queryParams.value.pageNo > 1 ? queryParams.value.pageNo - 1 : 1
|
|
loadMoreState.value = 'error'
|
|
}
|
|
}
|
|
|
|
/** 搜索按钮操作 */
|
|
function handleQuery(data?: Record<string, any>) {
|
|
queryParams.value = {
|
|
...data,
|
|
pageNo: 1,
|
|
pageSize: queryParams.value.pageSize,
|
|
}
|
|
list.value = []
|
|
getList()
|
|
}
|
|
|
|
/** 重置按钮操作 */
|
|
function handleReset() {
|
|
handleQuery()
|
|
}
|
|
|
|
/** 加载更多 */
|
|
function loadMore() {
|
|
if (loadMoreState.value === 'finished') {
|
|
return
|
|
}
|
|
queryParams.value.pageNo++
|
|
getList()
|
|
}
|
|
|
|
/** 查看详情 */
|
|
function handleDetail(item: NotifyMessage) {
|
|
// 如果未读,先标记已读
|
|
if (!item.readStatus) {
|
|
handleReadOne(item, false)
|
|
}
|
|
// 打开详情弹窗
|
|
detailPopupRef.value?.open(item)
|
|
}
|
|
|
|
/** 标记单条已读 */
|
|
async function handleReadOne(item: NotifyMessage, showToast = true) {
|
|
await updateNotifyMessageRead(item.id)
|
|
// 更新本地状态
|
|
item.readStatus = true
|
|
item.readTime = new Date()
|
|
if (showToast) {
|
|
toast.success('已标记为已读')
|
|
}
|
|
}
|
|
|
|
/** 标记全部已读 */
|
|
function handleReadAll() {
|
|
uni.showModal({
|
|
title: '提示',
|
|
content: '确定要将所有消息标记为已读吗?',
|
|
success: async (res) => {
|
|
if (!res.confirm) {
|
|
return
|
|
}
|
|
await updateAllNotifyMessageRead()
|
|
toast.success('全部已读成功')
|
|
// 刷新列表
|
|
queryParams.value.pageNo = 1
|
|
list.value = []
|
|
await getList()
|
|
},
|
|
})
|
|
}
|
|
|
|
/** 触底加载更多 */
|
|
onReachBottom(() => {
|
|
loadMore()
|
|
})
|
|
|
|
/** 初始化 */
|
|
onMounted(() => {
|
|
getList()
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style>
|