2035ff85 by simon

保费计算插件调整

1 parent 56f255a3
......@@ -417,10 +417,10 @@ module.exports = {
service: "Contact customer service",
genRich:{
t1:"Scroll to select insured amount",
t2:"保額(萬美元)",
t2:"USD (10 thousands)",
PaymentPeriod:"Payment period",
PaymentOptions:"Payment options",
quotePerMonth:"每月保費",
quotePerMonth:"Monthly Premium",
tips:"Please contact your financial consultant to quote for insured amount that exceeds USD 3 million",
years:"years",
......@@ -428,6 +428,8 @@ module.exports = {
SemiYearly:"Semi-yearly",
Quarterly:"Quarterly",
Monthly:"Monthly",
Premium:"Premium",
}
},
contact: {
......
......@@ -441,6 +441,7 @@ module.exports = {
SemiYearly:"每半年",
Quarterly:"每季",
Monthly:"每月",
Premium:"保費",
}
},
contact: {
......
......@@ -444,6 +444,7 @@ module.exports = {
SemiYearly:"每半年",
Quarterly:"每季",
Monthly:"每月",
Premium:"保费",
},
},
contact: {
......
......@@ -239,7 +239,7 @@ export default {
sliderPer
} = this;
let bet = 10000; //单位 万元
let result = bet * sliderPer / 1000 * curPaymentPeriod.p * curPaymentOption.p * curPaymentOption.v;
let result = bet * sliderPer / 1000 * curPaymentPeriod.p * curPaymentOption.p;
result = result.toFixed(2);
return result;
}
......
......@@ -270,7 +270,7 @@
<div class="line"></div>
<!-- 计算 -->
<div class="calculation">
<div class="label">{{$t('index.quote.genRich.quotePerMonth')}}</div>
<div class="label">{{curPaymentOption.n}}{{locale == 'en' ? ' ' : ''}}{{$t('index.quote.genRich.Premium')}}</div>
<div class="value">$ <span class="price">{{sumAssured}}</span></div>
</div>
<!-- 提示 -->
......