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.
75 lines
4.6 KiB
75 lines
4.6 KiB
<view class="list_li" wx:for="{{order_arr}}" wx:key="{{index}}"> |
|
<view class="list_head flex_between"> |
|
<view class="head_l">订单编号: |
|
<text>{{item.number}}</text> |
|
</view> |
|
<block wx:if="{{item.q_examine !== null}}"> |
|
<view class="head_r lv" wx:if="{{item.q_examine == 0 && (item.q_examine_business == 1 || item.q_examine_business == 0) }}"> |
|
<text>请款审批中</text> |
|
</view> |
|
<view class="head_r red" wx:if="{{item.q_examine == 2 || item.q_examine_business == 2}}"> |
|
<text>请款驳回</text> |
|
</view> |
|
</block> |
|
<block wx:elif="{{item.z_examine !== null}}"> |
|
<view class="head_r lv" wx:if="{{item.z_examine == 0 && (item.z_examine_business == 0 || item.z_examine_business == 1)}}"> |
|
<text>终审审批中</text> |
|
</view> |
|
<view class="head_r lv" wx:if="{{item.z_examine == 1 && item.z_examine_business == 1}}"> |
|
<text>终审已通过</text> |
|
</view> |
|
<view class="head_r red" wx:if="{{item.z_examine == 2 || item.z_examine_business == 2}}"> |
|
<text>终审驳回</text> |
|
</view> |
|
</block> |
|
<block wx:else> |
|
<view class="head_r lv" wx:if="{{item.c_examine == 0 && (item.c_examine_business == 1 || item.c_examine_business == 0)}}"> |
|
<text>初审审批中</text> |
|
</view> |
|
<view class="head_r lv" wx:if="{{item.c_examine == 1 && item.c_examine_business == 1 }}"> |
|
<text>初审已通过</text> |
|
</view> |
|
<view class="head_r red" wx:if="{{item.c_examine == 2 || item.c_examine_business == 2}}"> |
|
<text>初审驳回</text> |
|
</view> |
|
</block> |
|
</view> |
|
<view class="center_text flex_between"> |
|
<view class="text_l {{item.c_examine == 2 || item.c_examine_business == 2 ?'red':'lv'}} {{item.c_examine == 0 && (item.c_examine_business == 1 || item.c_examine_business == 0)?'approval':''}}"> |
|
<view class="title">承租人</view> |
|
<view class="name" wx:if="{{item.lessee_name}}">{{item.lessee_name}}</view> |
|
<view class="icon_img"> |
|
<view class="image" bindtap="firstDetails" data-id="{{item.id}}" data-index="{{index}}"> |
|
<image src="../../img/dengdai1.png" mode="widthFix" wx:if="{{item.c_examine == 0 && (item.c_examine_business == 1 || item.c_examine_business == 0) }}"></image> |
|
<image wx:elif="{{item.c_examine == 1 && item.c_examine_business== 1}}" src="../../img/ok.png" mode="widthFix"></image> |
|
<image src="../../img/fanbo1.png" mode="widthFix" wx:else></image> |
|
</view> |
|
<text>初审</text> |
|
</view> |
|
</view> |
|
<view class="text_l text_center {{item.z_examine == 2 || item.z_examine_business == 2 ?'red':'lv'}} {{(item.c_examine == 1 && item.c_examine_business == 1) && (item.z_examine == null || item.z_examine_business == null)?'approval':''}}"> |
|
<view class="title">车型</view> |
|
<view class="name">{{item.car_model[0]}}</view> |
|
<view class="icon_img" bindtap="endDetails" data-id="{{item.id}}" data-index="{{index}}" data-type="{{item.c_examine}}" data-name="{{item.lessee_name}}" data-address="{{item.id_card_address}}"> |
|
<view class="image"> |
|
<image wx:if="{{item.z_examine == null || item.z_examine_business == null || item.z_examine == 0 && (item.z_examine_business == 0 || item.z_examine_business == 1)}}" src="../../img/dengdai2.png" mode="widthFix"></image> |
|
<image wx:elif="{{item.z_examine == 1 && item.z_examine_business == 1}}" src="../../img/ok.png" mode="widthFix"></image> |
|
<image wx:else src="../../img/fanbo2.png" mode="widthFix"></image> |
|
</view> |
|
<text>终审</text> |
|
</view> |
|
</view> |
|
<view class="text_l text_center {{item.q_examine == 2 || item.q_examine_business == 2 ?'red':'lv'}} {{(item.z_examine == 1 && item.z_examine_business == 1) && (item.q_examine_business == null || item.q_examine == null)?'approval':''}}"> |
|
<view class="title">融资金额</view> |
|
<view class="name">{{item.apply}}</view> |
|
<view class="icon_img" bindtap="requestfunds" data-id="{{item.id}}" data-index="{{index}}" data-type="{{item.z_examine}}" data-name="{{item.lessee_name}}"> |
|
<view class="image"> |
|
<image wx:if="{{item.q_examine == null || item.q_examine_business == null || item.q_examine == 0 && (item.q_examine_business == 1 || item.q_examine_business == 0)}}" src="../../img/dengdai3.png" mode="widthFix"></image> |
|
<image wx:elif="{{item.q_examine == 1 && item.q_examine_business == 1}}" src="../../img/ok.png" mode="widthFix"></image> |
|
<image wx:else src="../../img/fanbo3.png" mode="widthFix"></image> |
|
</view> |
|
<text>请款</text> |
|
</view> |
|
</view> |
|
</view> |
|
</view> |