diff --git a/src/components/common/CardPottom.vue b/src/components/common/CardPottom.vue
index 8796e5531c654e434bb0ebebb72eec1b082607d4..c2e2ea107158f56e7d81308c7d430041400c936e 100644
--- a/src/components/common/CardPottom.vue
+++ b/src/components/common/CardPottom.vue
@@ -12,7 +12,7 @@
- 合同累计金额(元)
+ 合同金额(元)
diff --git a/src/components/common/PicketAcced.vue b/src/components/common/PicketAcced.vue
index 74c282b24b43f0d06f6d4b6fb4ec7a8aebca6fd5..4f3f306c984ba22be71882f75d12a819c34ab415 100644
--- a/src/components/common/PicketAcced.vue
+++ b/src/components/common/PicketAcced.vue
@@ -40,9 +40,10 @@
-
+
+
+
+
diff --git a/src/router/workbench.routing.ts b/src/router/workbench.routing.ts
index 81127e7bf8b6b0cd00b34e7f3a16d1a6de8ae696..923f99e6c40c83576d32c2b5a6ab77434019fb3e 100644
--- a/src/router/workbench.routing.ts
+++ b/src/router/workbench.routing.ts
@@ -11,6 +11,13 @@ import { propsConvert } from "@/services/props-convert";
const prefix = "/workbench";
const workbenchRoutes = [
+ {
+ path: `/ContractDetail`,
+ name: 'ContractDetail',
+ component: () => import(/* webpackChunkName: "customer-mgt" */ "@/views/workbench/ContractDetail.vue"),
+ props: propsConvert,
+ meta: { keepAlive: false, requiresAuth: true, name: "合同信息" },
+ },
{
path: `/PersonLod`,
name: 'PersonLod',
@@ -33,7 +40,7 @@ const workbenchRoutes = [
meta: { keepAlive: false, requiresAuth: true, name: "业务进度" },
},
-
+
{
path: `/modifyPassword`,
name: 'modifyPassword',
@@ -41,8 +48,8 @@ const workbenchRoutes = [
props: propsConvert,
meta: { keepAlive: false, requiresAuth: true, name: "修改密码" },
},
-
-
+
+
{
path: `/AccommodMain`,
name: 'AccommodMain',
diff --git a/src/views/DepositInterestTrial/CountResultB.vue b/src/views/DepositInterestTrial/CountResultB.vue
index d2d968fb558195843b4a370095ad5a0ee432f2a2..71a27d9444baab04644cecbedbc9fe6c286d3ba0 100644
--- a/src/views/DepositInterestTrial/CountResultB.vue
+++ b/src/views/DepositInterestTrial/CountResultB.vue
@@ -27,7 +27,7 @@
- 定期类型
+ 存款类型
{{timeType}}
diff --git a/src/views/DepositInterestTrial/DepositInterestTrial.vue b/src/views/DepositInterestTrial/DepositInterestTrial.vue
index 8c66ff342dd04ee1fed34c869ea45ca6d3071992..1bbf8d6b099a814be04cbeceefe96445ce9281ee 100644
--- a/src/views/DepositInterestTrial/DepositInterestTrial.vue
+++ b/src/views/DepositInterestTrial/DepositInterestTrial.vue
@@ -55,7 +55,7 @@
-
+
-
+ 计划月还款(元)
+ 贷款利率(%)
-->
@@ -220,7 +220,7 @@ export default class DepositInterestTrial extends Vue{
// }
// ];
saveTypes: any[] = [
- "定期","非定期",
+ "定期","活期",
];
onConfirmTypes(typeValue: string) {
@@ -343,9 +343,10 @@ export default class DepositInterestTrial extends Vue{
this.flagB=true;
}
countA() {
- let result = 0;
- result = parseInt(this.test.depositAmt)*parseInt(this.test.yearRate)/100*parseInt(this.test.time=="一年"?"1":this.test.time=="两年"?"2":"3");
- console.log("@@@@"+this.test.depositAmt)
+ let resultFirst = 0;
+ let result = "";
+ resultFirst = parseInt(this.test.depositAmt)*parseInt(this.test.yearRate)/100*parseInt(this.test.time=="一年"?"1":this.test.time=="两年"?"2":"3");
+ result = resultFirst.toFixed(2);
if(this.test.depositAmt==""||this.test.yearRate==""||this.test.time==""){
alert("请输入数据");
}else{
@@ -357,14 +358,16 @@ export default class DepositInterestTrial extends Vue{
time: this.test.time=="一年"?"1":this.test.time=="两年"?"2":"3",
yearRate: this.test.yearRate,
depositAmt: this.test.depositAmt,
- result: result.toString(),
+ result: result,
}
})
}
}
countB() {
- let result = 0;
- result = parseInt(this.test2.loanAmt)*parseInt(this.test2.loanRate)/100*parseInt(this.test2.loanTime)/12;
+ let resultFirst = 0;
+ let result = "";
+ resultFirst = parseInt(this.test2.loanAmt)*parseInt(this.test2.loanRate)/100*parseInt(this.test2.loanTime)/12;
+ result = resultFirst.toFixed(2);
if(this.test2.loanAmt==""||this.test2.loanRate==""||this.test2.loanTime==""){
alert("请输入数据")
}else{
@@ -378,7 +381,7 @@ export default class DepositInterestTrial extends Vue{
loanRate: this.test2.loanRate,
loanType: this.test2.loanType,
repayType: this.test2.repayType,
- result: result.toString(),
+ result: result,
}
})
}
diff --git a/src/views/authentication/LoginView.vue b/src/views/authentication/LoginView.vue
index dd129b7c34e8921c2c036005e23fff9f0e8e53d1..810e67318ec528c1d890aa0ca8318f41eb40eb6f 100644
--- a/src/views/authentication/LoginView.vue
+++ b/src/views/authentication/LoginView.vue
@@ -12,15 +12,15 @@