This commit is contained in:
王创世 2025-06-19 09:45:03 +08:00
parent e3c10cd38b
commit 0339d44d16

View File

@ -11,21 +11,15 @@
size="22"
></u-icon>
</view> -->
<view
class="nav_txt"
slot="center"
@click="one"
>
<view class="nav_txt" slot="center" @click="one">
<span style="padding-right: 20rpx;font-size: 34rpx;font-weight: bold;">系统消息</span>
<u-icon
size="19"
name="/static/clearicon.png"
></u-icon>
<u-icon size="19" name="/static/clearicon.png"></u-icon>
</view>
</u-navbar>
</view>
<view style="margin-top: 180rpx;" v-if="list.length > 0">
<view class="center flex flex-column flex-start" v-for="detail,index in list" :key="index" @click="only(detail.id,detail.type)">
<view class="center flex flex-column flex-start" v-for="detail,index in list" :key="index"
@click="only(detail.id,detail.type)">
<span class="title">
<span class="jiao" v-if="detail.type == 1">
<u-badge :isDot="true" type="error"></u-badge>
@ -39,8 +33,8 @@
<span class="span" style="margin-top: 20rpx; color: #999999 ;">{{detail.createtime_text}}</span>
</view>
</view>
<!-- <u-loadmore :status="loadStatus" nomoreText="已经到底啦~"/> -->
<view class="flex flex-column flex-start align-items" v-else style="margin-top: 600rpx;">
<u-loadmore :status="loadStatus" nomoreText="已经到底啦~" v-if="list.length > 0" />
<view class="flex flex-column flex-start align-items" v-if="list.length == 0" style="margin-top: 600rpx;">
<image src="/static/message/message.png" mode="" style="width: 256rpx;height: 240rpx;">
</image>
<view>暂无消息~</view>
@ -179,6 +173,7 @@
justify-content: center;
align-items: center;
}
.u-nav-slot {
width: 64rpx;
height: 64rpx;
@ -236,6 +231,7 @@
padding: 30rpx;
box-sizing: border-box;
position: relative;
.span {
font-family: PingFang SC, PingFang SC;
font-weight: 500;
@ -253,8 +249,14 @@
align-items: center;
justify-content: start;
}
.jiao {
margin-right: 20rpx;
}
}
</style>
<style>
::v-deep .u-loadmore{
display: block!important;
}
</style>