123
This commit is contained in:
@@ -44,7 +44,7 @@
|
|||||||
<span style="font-weight: bold">总贷款额:</span><span>{{scope.row.totalLoanMoney}}</span> <br>
|
<span style="font-weight: bold">总贷款额:</span><span>{{scope.row.totalLoanMoney}}</span> <br>
|
||||||
<span style="font-weight: bold">还款月数:</span><span>{{scope.row.totalMonth}}</span><br>
|
<span style="font-weight: bold">还款月数:</span><span>{{scope.row.totalMonth}}</span><br>
|
||||||
<span style="font-weight: bold">每月还款额:</span><span>{{scope.row.avgRepayment}}</span><br>
|
<span style="font-weight: bold">每月还款额:</span><span>{{scope.row.avgRepayment}}</span><br>
|
||||||
<span style="font-weight: bold">月利率:</span><span>{{scope.row.loanMonthRate}}</span><br>
|
<span style="font-weight: bold">月利率:</span><span>{{scope.row.loanMonthRate*100}}</span><br>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<!-- <el-table-column label="总贷款额" align="center" prop="totalLoanMoney" />
|
<!-- <el-table-column label="总贷款额" align="center" prop="totalLoanMoney" />
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ export default {
|
|||||||
this.form.tradeNo = response.data.tradeNo;
|
this.form.tradeNo = response.data.tradeNo;
|
||||||
this.form.totalLoanMoney = response.data.totalLoanMoney;
|
this.form.totalLoanMoney = response.data.totalLoanMoney;
|
||||||
this.form.totalMonth = response.data.totalMonth;
|
this.form.totalMonth = response.data.totalMonth;
|
||||||
this.form.loanMonthRate = response.data.loanMonthRate;
|
this.form.loanMonthRate = response.data.loanMonthRate*100;
|
||||||
this.open = true;
|
this.open = true;
|
||||||
this.title = "修改贷款信息";
|
this.title = "修改贷款信息";
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -33,7 +33,8 @@ module.exports = {
|
|||||||
proxy: {
|
proxy: {
|
||||||
// detail: https://cli.vuejs.org/config/#devserver-proxy
|
// detail: https://cli.vuejs.org/config/#devserver-proxy
|
||||||
[process.env.VUE_APP_BASE_API]: {
|
[process.env.VUE_APP_BASE_API]: {
|
||||||
target: `http://localhost:8082`,
|
// target: `http://localhost:8082`,
|
||||||
|
target: `http://dk.qiqizl.com/prod-api`,
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
pathRewrite: {
|
pathRewrite: {
|
||||||
['^' + process.env.VUE_APP_BASE_API]: ''
|
['^' + process.env.VUE_APP_BASE_API]: ''
|
||||||
|
|||||||
Reference in New Issue
Block a user