日照项目的居民端小程序
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.
 
 
 

42 lines
1.2 KiB

<view wx:if="{{ iniLoading }}" class="">
<scroll-view
class="list-view"
style="height: 100vh;"
scroll-anchoring="{{ true }}"
enable-back-to-top="{{ true }}"
bindscrolltolower="getGuideList"
scroll-y="{{true}}"
>
<view wx:if="{{ guideList.length>0 }}">
<view class="m-list">
<view class="item"
data-aid="{{ item.issueApplicationId }}"
data-gid="{{ item.gridId }}"
data-id="{{ item.guideId }}"
wx:key="issueId"
wx:for="{{ guideList }}"
bind:tap="selectIssue">
<view class="row row1">
<text class="title" >{{ item.title }}</text>
</view>
</view>
</view>
<view class="m-more">
<text wx:if="{{ noMore }}">没有更多了</text>
<text wx:elif="{{!noMore }}">上拉查看更多</text>
</view>
</view>
<view class="m-nothing" wx:if="{{ guideList.length ==0}}">
<image mode="aspectFill" class="arrow"
src="/assets/images/common/nothing.png" />
</view>
</scroll-view>
</view>
<loading showed="{{!iniLoading}}" />