15a893f0 by simon

默认提交

1 parent 812a41dc
......@@ -852,14 +852,15 @@ module.exports = {
label5: "Insured",
btn1: "E-policy",
btn2: "Confirm Now",
btn3: "Confirm later",
btn3: "Confirm Later",
ymd1: "/",
ymd2: "/",
ymd3: "",
tip1: "I ",
tip2: " confirm the receipt of the above policy on ",
tip3: "",
tip4: "contact customer service hotline"
tip4: "",
tip5: "Contact Customer Service Hotline"
},
clarms: {
title: "File a claim",
......
......@@ -830,7 +830,8 @@ module.exports = {
tip1: "本人",
tip2: "現確認於",
tip3: "收托上述保單",
tip4: "我想聯絡客服"
tip4: "我想",
tip5: "聯絡客服",
},
clarms: {
title:"索償申請",
......
......@@ -853,7 +853,8 @@ module.exports = {
tip1: "本人",
tip2: "现确认于",
tip3: "受托上述保单",
tip4: "我想联络客服"
tip4: "我想",
tip5: "联络客服"
},
clarms: {
title: "索偿申请",
......
......@@ -310,8 +310,11 @@ export default {
let yearList = [];
for (let index = 0; index < 12; index++) {
yearList.push({
year: yearPage * 10 + index - 1,
disable: index == 0 || index == 11
year: yearPage * 10 + index ,
// disable: index == 0 || index == 11,
// gray: index == 0 || index == 11,
disable: index >= 10,
gray: index >= 10,
});
}
this.yearRange = `${yearPage * 10 + 0}-${yearPage * 10 + 9}`
......
......@@ -126,6 +126,10 @@
cursor: default !important;
}
.gray{
color: #dcdddd !important;
}
.ipt-wrap {
position: relative;
display: flex;
......
......@@ -69,7 +69,7 @@
<div v-if="dateType == 3" class="con year">
<div class="tr">
<div class="td" v-for="(item,index) in yearList" :key="index">
<div @click="selectYear(item.disable ? null : item)" class="pointer point" :class="{'disable':item.disable}">
<div @click="selectYear(item)" class="pointer point" :class="{'gray':item.disable}">
{{item.year}}
</div>
</div>
......
......@@ -164,6 +164,7 @@
letter-spacing: 1.4px;
font-weight: bold;
border-radius: 8px;
color: $cOrange2;
.icon {
height: 47px;
......@@ -211,6 +212,7 @@
.contact {
margin: 50px auto 0;
font-weight: bold;
color: $cOrange2;
span {
text-decoration: underline;
......
......@@ -78,8 +78,9 @@
<div class="submit-btn" @click="handleConfirmPolicy">{{$t('vhis.btn2')}}</div>
<div class="submit-btn " @click="handleIgnorePolicy">{{$t('vhis.btn3')}}</div>
</div>
<div class="flex-center pointer contact" @click="toContact()">
<span class="orange bold">{{$t('vhis.tip4')}}</span>
<div class="flex-center contact">
{{$t('vhis.tip4')}}
<span class="pointer" @click="toContact()">{{$t('vhis.tip5')}}</span>
</div>
</div>
</div>
......