增加车辆审核信息显示
parent
fc5c6cc105
commit
d6f0d0eb80
|
@ -30,6 +30,7 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="flex-between mt-10 subtitle">
|
<view class="flex-between mt-10 subtitle">
|
||||||
<text>车辆进/出港状态:{{ item.vehicleArrivalStatus || '出港' }}</text>
|
<text>车辆进/出港状态:{{ item.vehicleArrivalStatus || '出港' }}</text>
|
||||||
|
<view> 审核状态:{{ IS_AUDIT_LIST[item.IS_AUDIT] }} </view>
|
||||||
</view>
|
</view>
|
||||||
<view class="flex-between mt-10 subtitle">
|
<view class="flex-between mt-10 subtitle">
|
||||||
<text>车辆来源:{{ VEHICLE_OWNERSHIP_TYPE_MAP[item.CAR_FROM] }}</text>
|
<text>车辆来源:{{ VEHICLE_OWNERSHIP_TYPE_MAP[item.CAR_FROM] }}</text>
|
||||||
|
@ -39,11 +40,11 @@
|
||||||
<u-button type="primary" text="查看" size="mini"
|
<u-button type="primary" text="查看" size="mini"
|
||||||
@click="fnNavigatorView(item.VEHICLE_ID)"></u-button>
|
@click="fnNavigatorView(item.VEHICLE_ID)"></u-button>
|
||||||
</view>
|
</view>
|
||||||
<view class="wrap ml-10">
|
<view v-if="item.IS_AUDIT === '1'" class="wrap ml-10">
|
||||||
<u-button type="primary" text="修改" size="mini"
|
<u-button type="primary" text="修改" size="mini"
|
||||||
@click="fnNavigatorAdd(item.VEHICLE_ID)"></u-button>
|
@click="fnNavigatorAdd(item.VEHICLE_ID)"></u-button>
|
||||||
</view>
|
</view>
|
||||||
<view class="wrap ml-10">
|
<view v-if="item.IS_AUDIT === '1'" class="wrap ml-10">
|
||||||
<u-button type="error" text="删除" size="mini"
|
<u-button type="error" text="删除" size="mini"
|
||||||
@click="fnDelete(item.VEHICLE_ID)"></u-button>
|
@click="fnDelete(item.VEHICLE_ID)"></u-button>
|
||||||
</view>
|
</view>
|
||||||
|
@ -79,6 +80,12 @@ export default {
|
||||||
0: "员工车辆",
|
0: "员工车辆",
|
||||||
1: "单位车辆",
|
1: "单位车辆",
|
||||||
},
|
},
|
||||||
|
IS_AUDIT_LIST: {
|
||||||
|
0: "未审核",
|
||||||
|
1: "交警支队审核通过",
|
||||||
|
2: "分公司审核通过",
|
||||||
|
3: "审核驳回",
|
||||||
|
},
|
||||||
LICENCE_NO: '',
|
LICENCE_NO: '',
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
currentPage: 1,
|
currentPage: 1,
|
||||||
|
|
|
@ -26,6 +26,24 @@
|
||||||
<view slot="title" class="title">车辆归属人</view>
|
<view slot="title" class="title">车辆归属人</view>
|
||||||
<view slot="label" class="mt-10">{{ info.USER_NAME }}</view>
|
<view slot="label" class="mt-10">{{ info.USER_NAME }}</view>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
|
<template v-if="info.IS_AUDIT === '2' || info.IS_AUDIT === '3'">
|
||||||
|
<u-cell>
|
||||||
|
<view slot="title" class="title">审核状态</view>
|
||||||
|
<view slot="label" class="mt-10">{{ IS_AUDIT_LIST[info.IS_AUDIT] }}</view>
|
||||||
|
</u-cell>
|
||||||
|
<u-cell>
|
||||||
|
<view slot="title" class="title">企业审核人</view>
|
||||||
|
<view slot="label" class="mt-10">{{ info.QY_AUDITOR_NAME }}</view>
|
||||||
|
</u-cell>
|
||||||
|
<u-cell>
|
||||||
|
<view slot="title" class="title">企业审核时间</view>
|
||||||
|
<view slot="label" class="mt-10">{{ info.QY_AUDIT_DATE }}</view>
|
||||||
|
</u-cell>
|
||||||
|
<u-cell>
|
||||||
|
<view slot="title" class="title">企业审核备注</view>
|
||||||
|
<view slot="label" class="mt-10">{{ info.QY_REMARK }}</view>
|
||||||
|
</u-cell>
|
||||||
|
</template>
|
||||||
<u-cell v-if="info.drivingImgs && info.drivingImgs.length > 0">
|
<u-cell v-if="info.drivingImgs && info.drivingImgs.length > 0">
|
||||||
<view slot="title" class="title">行驶证照片:</view>
|
<view slot="title" class="title">行驶证照片:</view>
|
||||||
<view slot="label" class="mt-10">
|
<view slot="label" class="mt-10">
|
||||||
|
|
Loading…
Reference in New Issue