|
|
|
@ -19,7 +19,7 @@ |
|
|
|
|
<el-table-column prop="processingResults" label="处理结果" align="center" width="100"> |
|
|
|
|
<template slot-scope="scope">{{ scope.row.processingResults || '-' }}</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="updateTime" label="处理日期" align="center" width="160"> |
|
|
|
|
<el-table-column prop="updateTime" label="处理日期" align="center" width="170"> |
|
|
|
|
<template slot-scope="scope">{{ scope.row.updateTime || '-' }}</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column prop="arrearsAmount" label="欠款金额" align="center" width="100"> |
|
|
|
@ -29,9 +29,10 @@ |
|
|
|
|
<template v-if="!scope.row.builtIn" slot-scope="scope"> |
|
|
|
|
<el-button @click="collection(scope.row)" size="small">催收</el-button> |
|
|
|
|
<el-button @click="postLoan(scope.row)" size="small">贷后调查</el-button> |
|
|
|
|
<el-button v-if="!scope.row.nonPerformingLoan" :disabled="scope.row.fiveLevelClassification" |
|
|
|
|
<el-button v-if="!scope.row.nonPerformingLoan" :disabled="scope.row.fiveLevelClassification != 4" |
|
|
|
|
@click="npl(scope.row)" size="small">不良贷款</el-button> |
|
|
|
|
<el-button v-if="!scope.row.badDebtRecognition" @click="badDebt(scope.row)" size="small">呆账认定</el-button> |
|
|
|
|
<el-button v-if="!scope.row.badDebtRecognition" :disabled="scope.row.fiveLevelClassification != 5" |
|
|
|
|
@click="badDebt(scope.row)" size="small">呆账认定</el-button> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table> |
|
|
|
|