Commit ebf2cb94 authored by 晓彤's avatar 晓彤

修改VCC查状态显示

parent a4198c98
......@@ -22,7 +22,18 @@
<el-table-column prop="registeredFrom" label="注册渠道" width="100px"></el-table-column>
<el-table-column prop="nextApplyTime" label="过期时间" width="180px"></el-table-column>
<el-table-column prop="createdAt" label="创建时间" width="180px"></el-table-column>
<el-table-column prop="status" label="状态"></el-table-column>
<el-table-column prop="status" label="状态">
<template slot-scope="scope">
<p v-if="scope.row.status===0">初始状态</p>
<p v-if="scope.row.status===1">授信成功</p>
<p v-if="scope.row.status===2">授信失败</p>
<p v-if="scope.row.status===3">禁用</p>
<p v-if="scope.row.status===4">审核中</p>
<p v-if="scope.row.status===5">冻结</p>
<p v-if="scope.row.status===6">开户成功</p>
<p v-if="scope.row.status===7">开户失败</p>
</template>
</el-table-column>
</el-table>
</el-card>
</div>
......
......@@ -31,7 +31,6 @@ export default {
// 还款回调
doRepayCallback() {
vccRepayCallback(this.repayCallbackParams).then((resp) => {
console.log('还款信息', resp)
if (resp.data.success === true) {
return this.$message.success('还款通知回调成功!')
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment