15a893f0 by simon

默认提交

1 parent 812a41dc
...@@ -852,14 +852,15 @@ module.exports = { ...@@ -852,14 +852,15 @@ module.exports = {
852 label5: "Insured", 852 label5: "Insured",
853 btn1: "E-policy", 853 btn1: "E-policy",
854 btn2: "Confirm Now", 854 btn2: "Confirm Now",
855 btn3: "Confirm later", 855 btn3: "Confirm Later",
856 ymd1: "/", 856 ymd1: "/",
857 ymd2: "/", 857 ymd2: "/",
858 ymd3: "", 858 ymd3: "",
859 tip1: "I ", 859 tip1: "I ",
860 tip2: " confirm the receipt of the above policy on ", 860 tip2: " confirm the receipt of the above policy on ",
861 tip3: "", 861 tip3: "",
862 tip4: "contact customer service hotline" 862 tip4: "",
863 tip5: "Contact Customer Service Hotline"
863 }, 864 },
864 clarms: { 865 clarms: {
865 title: "File a claim", 866 title: "File a claim",
......
...@@ -830,7 +830,8 @@ module.exports = { ...@@ -830,7 +830,8 @@ module.exports = {
830 tip1: "本人", 830 tip1: "本人",
831 tip2: "現確認於", 831 tip2: "現確認於",
832 tip3: "收托上述保單", 832 tip3: "收托上述保單",
833 tip4: "我想聯絡客服" 833 tip4: "我想",
834 tip5: "聯絡客服",
834 }, 835 },
835 clarms: { 836 clarms: {
836 title:"索償申請", 837 title:"索償申請",
......
...@@ -853,7 +853,8 @@ module.exports = { ...@@ -853,7 +853,8 @@ module.exports = {
853 tip1: "本人", 853 tip1: "本人",
854 tip2: "现确认于", 854 tip2: "现确认于",
855 tip3: "受托上述保单", 855 tip3: "受托上述保单",
856 tip4: "我想联络客服" 856 tip4: "我想",
857 tip5: "联络客服"
857 }, 858 },
858 clarms: { 859 clarms: {
859 title: "索偿申请", 860 title: "索偿申请",
......
...@@ -310,8 +310,11 @@ export default { ...@@ -310,8 +310,11 @@ export default {
310 let yearList = []; 310 let yearList = [];
311 for (let index = 0; index < 12; index++) { 311 for (let index = 0; index < 12; index++) {
312 yearList.push({ 312 yearList.push({
313 year: yearPage * 10 + index - 1, 313 year: yearPage * 10 + index ,
314 disable: index == 0 || index == 11 314 // disable: index == 0 || index == 11,
315 // gray: index == 0 || index == 11,
316 disable: index >= 10,
317 gray: index >= 10,
315 }); 318 });
316 } 319 }
317 this.yearRange = `${yearPage * 10 + 0}-${yearPage * 10 + 9}` 320 this.yearRange = `${yearPage * 10 + 0}-${yearPage * 10 + 9}`
......
...@@ -126,6 +126,10 @@ ...@@ -126,6 +126,10 @@
126 cursor: default !important; 126 cursor: default !important;
127 } 127 }
128 128
129 .gray{
130 color: #dcdddd !important;
131 }
132
129 .ipt-wrap { 133 .ipt-wrap {
130 position: relative; 134 position: relative;
131 display: flex; 135 display: flex;
......
...@@ -69,7 +69,7 @@ ...@@ -69,7 +69,7 @@
69 <div v-if="dateType == 3" class="con year"> 69 <div v-if="dateType == 3" class="con year">
70 <div class="tr"> 70 <div class="tr">
71 <div class="td" v-for="(item,index) in yearList" :key="index"> 71 <div class="td" v-for="(item,index) in yearList" :key="index">
72 <div @click="selectYear(item.disable ? null : item)" class="pointer point" :class="{'disable':item.disable}"> 72 <div @click="selectYear(item)" class="pointer point" :class="{'gray':item.disable}">
73 {{item.year}} 73 {{item.year}}
74 </div> 74 </div>
75 </div> 75 </div>
......
...@@ -164,6 +164,7 @@ ...@@ -164,6 +164,7 @@
164 letter-spacing: 1.4px; 164 letter-spacing: 1.4px;
165 font-weight: bold; 165 font-weight: bold;
166 border-radius: 8px; 166 border-radius: 8px;
167 color: $cOrange2;
167 168
168 .icon { 169 .icon {
169 height: 47px; 170 height: 47px;
...@@ -211,6 +212,7 @@ ...@@ -211,6 +212,7 @@
211 .contact { 212 .contact {
212 margin: 50px auto 0; 213 margin: 50px auto 0;
213 font-weight: bold; 214 font-weight: bold;
215 color: $cOrange2;
214 216
215 span { 217 span {
216 text-decoration: underline; 218 text-decoration: underline;
......
...@@ -78,8 +78,9 @@ ...@@ -78,8 +78,9 @@
78 <div class="submit-btn" @click="handleConfirmPolicy">{{$t('vhis.btn2')}}</div> 78 <div class="submit-btn" @click="handleConfirmPolicy">{{$t('vhis.btn2')}}</div>
79 <div class="submit-btn " @click="handleIgnorePolicy">{{$t('vhis.btn3')}}</div> 79 <div class="submit-btn " @click="handleIgnorePolicy">{{$t('vhis.btn3')}}</div>
80 </div> 80 </div>
81 <div class="flex-center pointer contact" @click="toContact()"> 81 <div class="flex-center contact">
82 <span class="orange bold">{{$t('vhis.tip4')}}</span> 82 {{$t('vhis.tip4')}}
83 <span class="pointer" @click="toContact()">{{$t('vhis.tip5')}}</span>
83 </div> 84 </div>
84 </div> 85 </div>
85 </div> 86 </div>
......