日照项目的居民端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

44 lines
1.3 KiB

<scroll-view
lower-threshold="{{50}}"
bindscrolltolower="getMore"
scroll-y="{{true}}"
class="g-scroll_page pd80">
<loading showed="{{!iniLoaded}}" />
<view wx:if="{{ iniLoaded }}">
<view class="m-list"
wx:if="{{list.data.length>0}}">
<view class="item"
wx:key="issueApplicationId"
wx:for="{{ list.data }}"
data-id="{{ item.issueApplicationId }}"
bind:tap="handleTapItem">
<view class="row">
<view class="name">
<text class="tag z-y"
wx:if="{{item.applyStatus=='under_auditing'}}">待审核</text>
<text class="tag z-r"
wx:if="{{item.applyStatus=='rejected'}}">已驳回</text>
<text>{{ item.issueTitle }}</text>
</view>
</view>
<view class="sts">
<fold-text>{{ item.suggestion }}</fold-text>
</view>
<view class="date">
<date-show timestamp="{{ item.latestTime }}" />
</view>
</view>
</view>
<view class="m-more" wx:if="{{ moreListHint && moreListHint!='暂无内容' }}">
{{ moreListHint }}
</view>
<view class="m-nothing" wx:else>
<image mode="aspectFill" class="arrow" src="/assets/images/group/nodata.png" />
</view>
</view>
</scroll-view>