遗留问题
Showing
5 changed files
with
12 additions
and
5 deletions
... | @@ -260,7 +260,7 @@ module.exports = { | ... | @@ -260,7 +260,7 @@ module.exports = { |
260 | passwordReset: { | 260 | passwordReset: { |
261 | oldPwd: "舊密碼", | 261 | oldPwd: "舊密碼", |
262 | oldPwdPlaceholde: "請輸入舊密碼", | 262 | oldPwdPlaceholde: "請輸入舊密碼", |
263 | cidExpire: "長時間未操作,為了您賬戶的安全,請重新開始", | 263 | cidExpire: "長時間未操作,為了您賬戶的安全,請登入後再操作", |
264 | type1: { | 264 | type1: { |
265 | title: "密碼找回", | 265 | title: "密碼找回", |
266 | t1: "用戶輸入信息", | 266 | t1: "用戶輸入信息", |
... | @@ -352,7 +352,7 @@ module.exports = { | ... | @@ -352,7 +352,7 @@ module.exports = { |
352 | e6: "您填寫的證件號碼有誤", | 352 | e6: "您填寫的證件號碼有誤", |
353 | e7: "您填寫的信息有誤,請核實後重新提交", | 353 | e7: "您填寫的信息有誤,請核實後重新提交", |
354 | }, | 354 | }, |
355 | noPolicy: "對不起,您輸入的資料與本公司的紀錄不符,請重新輸入。如需幫助可", | 355 | noPolicy: "對不起,您輸入的數據與本公司的紀錄不符,請重新輸入。如需幫助可", |
356 | customService: "聯繫客服", | 356 | customService: "聯繫客服", |
357 | }, | 357 | }, |
358 | index: { | 358 | index: { | ... | ... |
... | @@ -261,7 +261,7 @@ module.exports = { | ... | @@ -261,7 +261,7 @@ module.exports = { |
261 | passwordReset: { | 261 | passwordReset: { |
262 | oldPwd: "旧密码", | 262 | oldPwd: "旧密码", |
263 | oldPwdPlaceholde: "请输入旧密码", | 263 | oldPwdPlaceholde: "请输入旧密码", |
264 | cidExpire: "长时间未操作,为了您的账户安全,请重新开始", | 264 | cidExpire: "长时间未操作,为了您的账户安全,请登入后再操作", |
265 | type1: { | 265 | type1: { |
266 | title: "密码找回", | 266 | title: "密码找回", |
267 | t1: "用户输入信息", | 267 | t1: "用户输入信息", | ... | ... |
... | @@ -148,6 +148,7 @@ export default { | ... | @@ -148,6 +148,7 @@ export default { |
148 | sessionStorage.removeItem("clarmTypeSelect"); | 148 | sessionStorage.removeItem("clarmTypeSelect"); |
149 | let clarmDataFormStr = sessionStorage.getItem("clarmDataForm"); | 149 | let clarmDataFormStr = sessionStorage.getItem("clarmDataForm"); |
150 | sessionStorage.removeItem("clarmDataForm"); | 150 | sessionStorage.removeItem("clarmDataForm"); |
151 | let aggressStr = sessionStorage.getItem("clarmAggressStr"); | ||
151 | 152 | ||
152 | 153 | ||
153 | if (clarmDataFormStr) { | 154 | if (clarmDataFormStr) { |
... | @@ -168,6 +169,10 @@ export default { | ... | @@ -168,6 +169,10 @@ export default { |
168 | } | 169 | } |
169 | } | 170 | } |
170 | 171 | ||
172 | if (aggressStr && aggressStr == "true") { | ||
173 | this.agress = true; | ||
174 | } | ||
175 | |||
171 | this.data.policyDateLegal = this.checkPolicyDateLegal(); | 176 | this.data.policyDateLegal = this.checkPolicyDateLegal(); |
172 | if (this.data.policyDateLegal) { | 177 | if (this.data.policyDateLegal) { |
173 | this.policyIllegal = false; | 178 | this.policyIllegal = false; |
... | @@ -180,6 +185,7 @@ export default { | ... | @@ -180,6 +185,7 @@ export default { |
180 | cacheData() { | 185 | cacheData() { |
181 | sessionStorage.setItem("clarmTypeSelect", JSON.stringify(this.typeSelected)); | 186 | sessionStorage.setItem("clarmTypeSelect", JSON.stringify(this.typeSelected)); |
182 | sessionStorage.setItem("clarmDataForm", JSON.stringify(this.data)); | 187 | sessionStorage.setItem("clarmDataForm", JSON.stringify(this.data)); |
188 | sessionStorage.setItem("clarmAggressStr", this.agress ? "true" : "false"); | ||
183 | 189 | ||
184 | this.$refs['HT41'] && this.$refs['HT41'].cacheData(); | 190 | this.$refs['HT41'] && this.$refs['HT41'].cacheData(); |
185 | this.$refs['HT26'] && this.$refs['HT26'].cacheData(); | 191 | this.$refs['HT26'] && this.$refs['HT26'].cacheData(); |
... | @@ -190,6 +196,7 @@ export default { | ... | @@ -190,6 +196,7 @@ export default { |
190 | clearCache() { | 196 | clearCache() { |
191 | sessionStorage.removeItem("clarmTypeSelect"); | 197 | sessionStorage.removeItem("clarmTypeSelect"); |
192 | sessionStorage.removeItem("clarmDataForm"); | 198 | sessionStorage.removeItem("clarmDataForm"); |
199 | sessionStorage.removeItem("clarmAggressStr"); | ||
193 | 200 | ||
194 | this.$refs['HT41'] && this.$refs['HT41'].clearCache(); | 201 | this.$refs['HT41'] && this.$refs['HT41'].clearCache(); |
195 | this.$refs['HT26'] && this.$refs['HT26'].clearCache(); | 202 | this.$refs['HT26'] && this.$refs['HT26'].clearCache(); | ... | ... |
... | @@ -33,7 +33,7 @@ | ... | @@ -33,7 +33,7 @@ |
33 | </template> | 33 | </template> |
34 | <span class="sp" :class="{ac: selectPolicyCode == item.policyCode}">{{item.policyCode}}</span> | 34 | <span class="sp" :class="{ac: selectPolicyCode == item.policyCode}">{{item.policyCode}}</span> |
35 | <template v-if="model == 'download'"> | 35 | <template v-if="model == 'download'"> |
36 | <div class="download" @mouseover="onShowTipsOverHandler($event,item,index)" @mouseout="onShowTipsOutHandler($event,item,index)"> | 36 | <div class="download" @mouseover="onShowTipsOverHandler($event,item,index)" @mouseout="onShowTipsOutHandler($event,item,index)" @click="downloadPolicy(item)"> |
37 | <div class="download-tips"> | 37 | <div class="download-tips"> |
38 | <div class="cont">{{$t('customService.insuranceQuery.downloadClick')}}</div> | 38 | <div class="cont">{{$t('customService.insuranceQuery.downloadClick')}}</div> |
39 | </div> | 39 | </div> | ... | ... |
-
Please register or sign in to post a comment