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.totalMonth}}</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>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column label="总贷款额" align="center" prop="totalLoanMoney" />
|
||||
|
||||
@@ -83,7 +83,7 @@ export default {
|
||||
this.form.tradeNo = response.data.tradeNo;
|
||||
this.form.totalLoanMoney = response.data.totalLoanMoney;
|
||||
this.form.totalMonth = response.data.totalMonth;
|
||||
this.form.loanMonthRate = response.data.loanMonthRate;
|
||||
this.form.loanMonthRate = response.data.loanMonthRate*100;
|
||||
this.open = true;
|
||||
this.title = "修改贷款信息";
|
||||
});
|
||||
|
||||
@@ -33,7 +33,8 @@ module.exports = {
|
||||
proxy: {
|
||||
// detail: https://cli.vuejs.org/config/#devserver-proxy
|
||||
[process.env.VUE_APP_BASE_API]: {
|
||||
target: `http://localhost:8082`,
|
||||
// target: `http://localhost:8082`,
|
||||
target: `http://dk.qiqizl.com/prod-api`,
|
||||
changeOrigin: true,
|
||||
pathRewrite: {
|
||||
['^' + process.env.VUE_APP_BASE_API]: ''
|
||||
|
||||
Reference in New Issue
Block a user