Compare commits

..

2 Commits

Author SHA1 Message Date
df8f3c76b0 Merge branch 'main' of http://49.235.147.88:3000/zhangkai/dyqc_hdapp 2025-06-14 14:04:15 +08:00
82ce5d7fdd 修改消息 2025-06-14 14:04:12 +08:00

View File

@ -26,15 +26,17 @@
</view>
<view style="margin-top: 180rpx;">
<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">{{detail.title}}</span>
<span class="title">
<span class="jiao" v-if="detail.type == 1">
<u-badge :isDot="true" type="error"></u-badge>
</span>
{{detail.title}}
</span>
<span class="span" style="margin-top: 20rpx;">
<!-- <u-parse :content="detail.desc" :selectable="true"></u-parse> -->
<rich-text :nodes="detail.desc" selectable user-select></rich-text>
</span>
<span class="span" style="margin-top: 20rpx; color: #999999 ;">{{detail.createtime_text}}</span>
<span class="jiao" v-if="detail.type == 1">
<u-badge :isDot="true" type="error"></u-badge>
</span>
<span class="span" style="margin-top: 20rpx; color: #999999 ;">{{detail.createtime_text}}</span>
</view>
</view>
<u-loadmore :status="loadStatus" nomoreText="已经到底啦~"/>
@ -214,7 +216,7 @@
.center {
margin: 30rpx;
width: 690rpx;
height: 278rpx;
// height: 278rpx;
background: #FFFFFF;
border-radius: 20rpx 20rpx 20rpx 20rpx;
padding: 30rpx;
@ -233,11 +235,12 @@
font-weight: 800;
font-size: 34rpx;
color: #202020 ;
display: flex;
align-items: center;
justify-content: start;
}
.jiao {
position: absolute;
left: 0;
top: 0;
margin-right: 20rpx;
}
}
</style>