Commit c2296e77 authored by caimeng's avatar caimeng
parent f26a783f
This diff is collapsed.
...@@ -155,7 +155,7 @@ export default { ...@@ -155,7 +155,7 @@ export default {
}, },
// 切换选项卡 // 切换选项卡
handleClick(row) { handleClick(row) {
// console.log(row, '一行信息'); console.log(row, '一行信息');
this.visible = true; this.visible = true;
this.title = '借款详情'; this.title = '借款详情';
this.items = { this.items = {
......
...@@ -99,9 +99,7 @@ ...@@ -99,9 +99,7 @@
<el-table-column align="center" label="操作"> <el-table-column align="center" label="操作">
<template v-if="scope.row.invalid==='true'" slot-scope="scope"> <template v-if="scope.row.invalid==='true'" slot-scope="scope">
<el-button type="text" size="small" @click="handleCancel(scope.row)">协议作废</el-button> <el-button type="text" size="small" @click="handleCancel(scope.row)">协议作废</el-button>
<el-button v-if="scope.row.urlEffectiveStr!=='true'" type="text" size="small" <el-button type="text" size="small" @click="handleDelay(scope.row)">延时</el-button>
@click="handleDelay(scope.row)">延时
</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
...@@ -273,6 +271,7 @@ export default { ...@@ -273,6 +271,7 @@ export default {
if (res.status === 200 && res.data.success) { if (res.status === 200 && res.data.success) {
this.$message.success('操作成功!'); this.$message.success('操作成功!');
await this.init() await this.init()
this.delayVisible = false;
} else { } else {
this.$message.error(res.data.message); this.$message.error(res.data.message);
} }
......
...@@ -63,13 +63,13 @@ ...@@ -63,13 +63,13 @@
</el-form-item> </el-form-item>
<template v-if="LoanInfo"> <template v-if="LoanInfo">
<el-form-item style="margin-bottom: 0" label="服务费金额"> <el-form-item style="margin-bottom: 0" label="剩余可平摊服务费金额">
<div>{{ LoanInfo.splitServiceAmt }}</div> <div>{{ LoanInfo.splitServiceAmt }}</div>
</el-form-item> </el-form-item>
<el-form-item style="margin-bottom: 0" label="服务费期数"> <el-form-item style="margin-bottom: 0" label="服务费期数">
<div>{{ LoanInfo.splitPlanIndex }}</div> <div>{{ LoanInfo.splitPlanIndex }}</div>
</el-form-item> </el-form-item>
<el-form-item style="margin-bottom: 0" label="融单费金额"> <el-form-item style="margin-bottom: 0" label="剩余可平摊融单费金额">
<div>{{ LoanInfo.splitBurdenAmt }}</div> <div>{{ LoanInfo.splitBurdenAmt }}</div>
</el-form-item> </el-form-item>
<el-form-item style="margin-bottom: 0" label="融单费期数"> <el-form-item style="margin-bottom: 0" label="融单费期数">
......
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