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.
 

55 lines
2.4 KiB

<!--pages/guarantee/guarantee.wxml-->
<view class="swiper-tab">
<view class="swiper-tab-list {{currentTab==0 ? 'on' : ''}}" data-current="0" bindtap="swichNav">未审核</view>
<view class="swiper-tab-list {{currentTab==1 ? 'on' : ''}}" data-current="1" bindtap="swichNav">已审核</view>
</view>
<swiper current="{{currentTab}}" class="swiper-box" duration="300" style="height:{{winHeight - 55}}px" bindchange="bindChange">
<!-- 未审核 -->
<swiper-item class="swiper-items">
<scroll-view scroll-x="false" scroll-y="true" bindscrolltoupper="upperN" bindscrolltolower="scrollLower" class='scroll-views'>
<view class="custmer_list">
<view class="custmer_list_view_main" wx:for="{{arrayN}}" wx:key="item">
<view class='custmer_list_view' catchtap='itemclickN' data-Data='{{item}}'>
<view class='itemview_h'>
<text class='text_id'>No.{{item.ID}}</text>
<text class='text_id'>金额:{{item.GuaranteeMoney}}</text>
</view>
<view class='itemview_h'>
<text class='text_name'>{{item.Customer_Name}}</text>
<text class='text_name'>担保日期:{{item.GuaranteeDate}}</text>
</view>
</view>
<view class='view_line_main'>
<view class='view_line'></view>
</view>
</view>
</view>
</scroll-view>
</swiper-item>
<!-- 已审核 -->
<swiper-item class="swiper-items">
<scroll-view scroll-x="false" scroll-y="true" class='scroll-views' bindscrolltoupper="upperY" bindscrolltolower="scrollLower">
<view class="custmer_list">
<view class="custmer_list_view_main" wx:for="{{arrayY}}" wx:key="item">
<view class='custmer_list_view' catchtap='itemclickY' data-Data='{{item}}'>
<view class='itemview_h'>
<text class='text_id'>No.{{item.ID}}</text>
<text class='text_id'>金额:{{item.GuaranteeMoney}}</text>
</view>
<view class='itemview_h'>
<text class='text_name'>{{item.Customer_Name}}</text>
<text class='text_name'>担保日期:{{item.GuaranteeDate}}</text>
</view>
</view>
<view class='view_line_main'>
<view class='view_line'></view>
</view>
</view>
</view>
</scroll-view>
</swiper-item>
</swiper>
<image class='xinjian' bindtap="createNew" src="/imgs/create.png"></image>