|
|
@ -49,6 +49,11 @@ |
|
|
|
<el-form-item label="欠款合计"> |
|
|
|
<el-input v-model="listQuery.params.arrearsAll" placeholder="" clearable/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="是否追偿"> |
|
|
|
<el-select v-model="listQuery.params.isRecovery" placeholder="请选择" clearable> |
|
|
|
<el-option v-for="item in state_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictKey"></el-option> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
<div class="btn" style="text-align: center;"> |
|
|
|
<el-button type="primary" icon="el-icon-search" size="small" @click="handleFilter">查询</el-button> |
|
|
@ -78,81 +83,22 @@ |
|
|
|
<span v-else @click="flowRecord(scope.row)" class="bluezi">{{ scope.row.nodeState }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="分公司" align="center" width="130"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.useOrgName }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="申请部门" align="center" width="130"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.createDept }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="申请人" align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.createByName }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="申请日期" align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.createDate }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="办结日期" align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.closeDate }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="贷款合同编号" align="center" width="160"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.loanContractNo }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="车架号" align="center" min-width="120"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.vinNo }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="车牌号" align="center" min-width="120"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.vehMark }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="资方" align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.bankName }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="资方合同编号" align="center" width="160"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.bankContractNo }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="客户名称" align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.customerName }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="贷款人" align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.loanName }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="欠款合计" align="center" width="120"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.arrearsAll }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="车辆售价" align="center" width="120"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.vehPrice }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="预计亏损金额" align="center" width="140"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.lossPrice }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="useOrgName" label="分公司" align="center" width="130" /> |
|
|
|
<el-table-column prop="createDept" label="申请部门" align="center" width="130" /> |
|
|
|
<el-table-column prop="createByName" label="申请人" align="center" width="100" /> |
|
|
|
<el-table-column prop="createDate" label="申请日期" align="center" width="100" /> |
|
|
|
<el-table-column prop="closeDate" label="办结日期" align="center" width="100" /> |
|
|
|
<el-table-column prop="loanContractNo" label="贷款合同编号" align="center" width="160" /> |
|
|
|
<el-table-column prop="vinNo" label="车架号" align="center" min-width="120" /> |
|
|
|
<el-table-column prop="vehMark" label="车牌号" align="center" min-width="120" /> |
|
|
|
<el-table-column prop="bankName" label="资方" align="center" width="100" /> |
|
|
|
<el-table-column prop="bankContractNo" label="资方合同编号" align="center" width="160" /> |
|
|
|
<el-table-column prop="customerName" label="客户名称" align="center" width="100" /> |
|
|
|
<el-table-column prop="loanName" label="贷款人" align="center" width="100" /> |
|
|
|
<el-table-column prop="arrearsAll" label="欠款合计" align="center" width="120" /> |
|
|
|
<el-table-column prop="vehPrice" label="车辆售价" align="center" width="120" /> |
|
|
|
<el-table-column prop="lossPrice" label="预计亏损金额" align="center" width="140" /> |
|
|
|
<el-table-column prop="isRecovery" label="是否追偿" align="center" width="120" /> |
|
|
|
</el-table> |
|
|
|
</div> |
|
|
|
<!--End 主页面主要部分--> |
|
|
@ -276,6 +222,16 @@ export default { |
|
|
|
list: [], |
|
|
|
sids: [], // 用于导出的时候保存已选择的SIDs |
|
|
|
multipleSelection: [], |
|
|
|
state_list: [ |
|
|
|
{ |
|
|
|
dictKey: '1', |
|
|
|
dictValue: '是' |
|
|
|
}, |
|
|
|
{ |
|
|
|
dictKey: '0', |
|
|
|
dictValue: '否' |
|
|
|
} |
|
|
|
], |
|
|
|
FormLoading: false, |
|
|
|
listLoading: false, |
|
|
|
// 翻页 |
|
|
@ -301,7 +257,8 @@ export default { |
|
|
|
useOrgName: '', |
|
|
|
userSid: '', |
|
|
|
vehMark: '', |
|
|
|
vinNo: '' |
|
|
|
vinNo: '', |
|
|
|
isRecovery: '' |
|
|
|
} |
|
|
|
}, |
|
|
|
carVisible: false, |
|
|
@ -447,7 +404,8 @@ export default { |
|
|
|
useOrgName: '', |
|
|
|
userSid: '', |
|
|
|
vehMark: '', |
|
|
|
vinNo: '' |
|
|
|
vinNo: '', |
|
|
|
isRecovery: '' |
|
|
|
} |
|
|
|
} |
|
|
|
this.getList() |
|
|
|