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.
17 lines
980 B
Plaintext
17 lines
980 B
Plaintext
<view class="sub f14" wx:for="{{list}}" hover-class="none" hover-stop-propagation="false">
|
|
<view class="fsa mb8 c9" hover-class="none" hover-stop-propagation="false">
|
|
<view class hover-class="none" hover-stop-propagation="false">{{item.updateTime}}</view>
|
|
<view class hover-class="none" hover-stop-propagation="false">{{item.replyStatus == 0 ? '已反馈':'已回复'}}</view>
|
|
</view>
|
|
<view class="c6" hover-class="none" hover-stop-propagation="false">{{item.content}}</view>
|
|
<view class="c3 pt8 mt8 btd1" wx:if="{{item.reply}}" hover-class="none" hover-stop-propagation="false">{{item.reply}}</view>
|
|
</view>
|
|
<block wx:if="{{(list == null || list.length == 0) && !isLoading}}">
|
|
<view class="empty br8">
|
|
<view class="center" style="margin-top:128rpx;">
|
|
<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>
|