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.
37 lines
1.1 KiB
37 lines
1.1 KiB
<scroll-view lower-threshold="{{50}}"
|
|
bindscrolltolower="getMore"
|
|
scroll-y="{{true}}"
|
|
class="g-scroll_page">
|
|
<loading id="loading"></loading>
|
|
|
|
<view wx:if="{{ iniLoaded }}">
|
|
<view class="m-list">
|
|
<view class="item" wx:key="key" wx:for="{{ list.data }}"
|
|
data-index="{{ index }}"
|
|
bind:tap="handleTapItem">
|
|
<view class="tag" wx:if="{{item.fillStatus}}">已填写</view>
|
|
|
|
<view class="row">
|
|
<view class="date">{{ item.updatedTime || item.createdTime }}</view>
|
|
|
|
<view class="name">
|
|
<image mode="aspectFill" class="arrow" src="/subpages/index/images/home.png" />
|
|
<text>{{ item.orgName }}</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="sts">
|
|
<text>{{ item.name }}</text>
|
|
</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>
|