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

58 lines
3.2 KiB
Plaintext

2 years ago
<view class="p10">
<!-- <view class="display-flex bgf mb10" hover-class="hcb" style="border:1rpx solid #eee;border-radius:8px;padding:16px 12px;" bindtap="goDetail">
<view class="v-center">
<view class="v-center phoneOut pr" catchtap="makePhone" hover-stop-propagation hover-class="thover">
<icon class="iconfont icon-xiaoxi-xuanzhong" style="color:#027aff;font-size:18px;"></icon>
<view class="phone-circle"></view>
</view>
</view>
<view class="flex-1">
<view class="f14 mb8"><text class="mr8 f16">滴滴滴</text><text class="c045 fr">2022-02-24</text></view>
<view style="white-space:nowrap; overflow:hidden; text-overflow:ellipsis;width:calc(100vw - 120px);" class="c065 mt8 f14">
嘟嘟嘟嘟嘟嘟嘟嘟嘟嘟多多多多多多多多多多多多多多多多多多多多多多多多多
</view>
</view>
</view> -->
<block wx:if="{{recordList != null && recordList.length > 0}}">
<view class="bgf br8" style="padding:4px 0;">
<view hover-class="hcb" class="viewList" style="padding:10px 12px 0;" wx:for="{{recordList}}" wx:for-item="item" wx:for-index="idx" data-id="{{item.id}}" bindtap="goDetail" data-info="{{item}}">
<view class="display-flex htc">
<!-- <view class="v-center">
<view class="v-center phoneOut pr" catchtap="makePhone" hover-stop-propagation hover-class="thover">
<icon class="iconfont icon-tongzhi" style="color:#027aff;font-size:18px;margin-top: -2px;opacity:0.65;"></icon>
<view class="{{item.read == 2 ? 'phone-circle' : ''}}"></view>
</view>
</view> -->
<view class="flex-1">
<view style="display: flex;">
<view class="flex-1" style="display: flex;align-items: center;">
<view class="{{item.read == 2 ? 'phone-circle1' : ''}}"> </view>
<text class="" style="font-size:18px;color:#000;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;width: calc(100vw - 168px);display: inline-block;line-height:30px;">{{item.articleTitle}}</text>
</view>
<text class="c045 fr f12" style="position: relative;top: 5px;">{{item.updateTimeStr}}</text>
</view>
<view class="c9" style="font-size:14px;white-space:nowrap; overflow:hidden; text-overflow:ellipsis;width:calc(100vw - 90px);margin-bottom:12px;line-height: 24px;">
{{item.articleSubContent || item.articleTitle + '.pdf'}}
<!-- <rich-text nodes="{{item.userServeRecordDespLatest == null ? '' : item.userServeRecordDespLatest}}" class="c065 f14 mt8"></rich-text> -->
</view>
</view>
</view>
</view>
</view>
<view wx:if="{{!hasMoreData && !isLoading}}" class="f12 c9 tc p20">暂无更多数据</view>
<view wx:if="{{isLoading}}" class="f12 c9 tc p20">加载中...</view>
<view wx:if="{{hasMoreData}}" bindtap="loadMoreData" class="loadMore" hover-class="hcb">点击加载更多</view>
</block>
<block wx:if="{{(recordList == null || recordList.length == 0) && !isLoading}}">
<view style="margin-top:128rpx;">
<view class="center">
<icon class='t-icon cccc t-icon-zanwu' style='width:86px;height:86px;margin-bottom:20px;margin-top:30px'></icon>
<view class="f16 cccc">暂无消息</view>
</view>
</view>
</block>
</view>