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.
32 lines
1.5 KiB
32 lines
1.5 KiB
<!--pages/message/index.wxml-->
|
|
<view class="bg-white" style="height: 90rpx;border-bottom: 1rpx solid #f3f3f3;position: relative;" wx:if="{{tabList.length}}">
|
|
<wux-tabi scroll="{{scrolled}}" tab-data="{{tabList}}" disable="{{requesting}}" tab-index="{{tabIndex}}" bind:change="onTabChange"></wux-tabi>
|
|
</view>
|
|
<wux-skeleton active wx:else>
|
|
<view class="flex bg-white" style="height: 90rpx;padding:32rpx;border-bottom: 1rpx solid #f3f3f3">
|
|
<wux-skeleton-paragraph rounded rows="1" wux-class="case3-class" />
|
|
</view>
|
|
</wux-skeleton>
|
|
<!-- <refresh-view bind:refresh="onRefreshList" height="{{mHeight}}" triggered="{{requesting}}" bind:scrolltolower="fetchList"> -->
|
|
<scroll-view scroll-y style="height: {{height - 90}}rpx;" bind:scrolltolower="fetchList">
|
|
<wux-skeleton active wx:if="{{!orderList.length}}">
|
|
<view class="flex item-content">
|
|
<wux-skeleton-paragraph rounded rows="16" wux-class="case3-class" />
|
|
</view>
|
|
</wux-skeleton>
|
|
<view wx:for-item="pageItem" wx:for-index="pageIndex" wx:for="{{orderList}}" wx:key="pageIndex">
|
|
<view wx:for="{{pageItem}}" wx:key="index">
|
|
<info-item item="{{item}}"></info-item>
|
|
</view>
|
|
</view>
|
|
<!--加载更多的UI-->
|
|
<view wx:if="{{form.pageNum > 1}}" style="padding:20rpx">
|
|
<wux-divider>
|
|
<view class="loadmore">
|
|
<text class="icon--refresher" wx:if="{{!finished}}"></text>
|
|
<text class="text-sm" style="margin-left:8rpx">{{finished?'到底啦~':'加载中...'}}</text>
|
|
</view>
|
|
</wux-divider>
|
|
</view>
|
|
</scroll-view>
|
|
<!-- </refresh-view> -->
|