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.
42 lines
2.4 KiB
Plaintext
42 lines
2.4 KiB
Plaintext
|
2 years ago
|
<view class="mt12">
|
||
|
|
<block wx:if="{{recordList != null && recordList.length > 0}}">
|
||
|
|
<view class="" style=" border-bottom-left-radius: 8px;border-bottom-right-radius: 8px;">
|
||
|
|
|
||
|
|
|
||
|
|
<view hover-class="hcb" class="viewList bgf" style="padding:10px 12px 0;" wx:for="{{recordList}}" wx:for-item="item" wx:for-index="idx" data-id="{{item.id}}" bindtap="goDetail">
|
||
|
|
<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;">
|
||
|
|
<text class="" style="font-size:16px;color:#000;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;width: calc(100vw - 168px);display: inline-block;line-height:30px;">{{item.title}}</text>
|
||
|
|
</view>
|
||
|
|
<text class="c045 fr f12" wx:if="{{navlist == 40 || navlist == 30}}" 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 - 40px);margin-bottom:12px;line-height: 24px;">
|
||
|
|
{{item.content}}
|
||
|
|
<!-- <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>
|