12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <import src="../../public/page/order-item.wxml" />
- <view class="bg-view" animation="{{bgAnimation}}">
- <scroll-view scroll-y="{{scroll}}" class="bg-scroll-view" style="background-color:{{(data[0].length == 0 && !isLoading) ? 'white' : '#F5F5F5'}};">
- <view style="width:100%;height:124rpx;"></view>
- <template is="order-item" wx:for="{{data[0]}}" wx:key="{{index}}" data="{{...item, id: index}}"/>
- <view class="no-data" wx:if="{{data[0].length == 0 && !isLoading}}">
- <image src="../../../../icon/public/salary_empty.png"></image>
- <text>暂无社保流水记录</text>
- </view>
- </scroll-view>
- <scroll-view scroll-y="{{scroll}}" class="bg-scroll-view" style="background-color:{{(data[1].length == 0 && !isLoading) ? 'white' : '#F5F5F5'}};">
- <view style="width:100%;height:124rpx;"></view>
- <template is="order-item" wx:for="{{data[1]}}" wx:key="{{index}}" data="{{...item, id: index}}"/>
- <view class="no-data" wx:if="{{data[1].length == 0 && !isLoading}}">
- <image src="../../../../icon/public/salary_empty.png"></image>
- <text>暂无社保流水记录</text>
- </view>
- </scroll-view>
- </view>
- <!-- </scroll-view> -->
- <view class="tab-view">
- <view>
- <view class="{{tab.id == '1' ? 'tab-text-s' : 'tab-text-n'}}" bindtap="tabChoose" id="1">待处理</view>
- <view class="{{tab.id == '1' ? 'tab-text-n' : 'tab-text-s'}}" bindtap="tabChoose" id="2">已处理</view>
- </view>
- <view>
- <view animation="{{tab.animation}}">
- <view></view>
- </view>
- </view>
- </view>
- <template is="order-details-view" data="{{...detailsView}}" />
|