Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
dev
/
pingan-life-index-pro
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
15a893f0
authored
2020-02-20 11:09:37 +0800
by
simon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
默认提交
1 parent
812a41dc
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
22 additions
and
9 deletions
src/common/lang/en.js
src/common/lang/tc.js
src/common/lang/zh.js
src/components/date-picker/date-picker.js
src/components/date-picker/date-picker.scss
src/components/date-picker/date-picker.vue
src/components/vhis-modal/vhis-modal.scss
src/components/vhis-modal/vhis-modal.vue
src/common/lang/en.js
View file @
15a893f
...
...
@@ -852,14 +852,15 @@ module.exports = {
label5
:
"Insured"
,
btn1
:
"E-policy"
,
btn2
:
"Confirm Now"
,
btn3
:
"Confirm
l
ater"
,
btn3
:
"Confirm
L
ater"
,
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"
,
...
...
src/common/lang/tc.js
View file @
15a893f
...
...
@@ -830,7 +830,8 @@ module.exports = {
tip1
:
"本人"
,
tip2
:
"現確認於"
,
tip3
:
"收托上述保單"
,
tip4
:
"我想聯絡客服"
tip4
:
"我想"
,
tip5
:
"聯絡客服"
,
},
clarms
:
{
title
:
"索償申請"
,
...
...
src/common/lang/zh.js
View file @
15a893f
...
...
@@ -853,7 +853,8 @@ module.exports = {
tip1
:
"本人"
,
tip2
:
"现确认于"
,
tip3
:
"受托上述保单"
,
tip4
:
"我想联络客服"
tip4
:
"我想"
,
tip5
:
"联络客服"
},
clarms
:
{
title
:
"索偿申请"
,
...
...
src/components/date-picker/date-picker.js
View file @
15a893f
...
...
@@ -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
}
`
...
...
src/components/date-picker/date-picker.scss
View file @
15a893f
...
...
@@ -126,6 +126,10 @@
cursor
:
default
!
important
;
}
.gray
{
color
:
#dcdddd
!
important
;
}
.ipt-wrap
{
position
:
relative
;
display
:
flex
;
...
...
src/components/date-picker/date-picker.vue
View file @
15a893f
...
...
@@ -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>
...
...
src/components/vhis-modal/vhis-modal.scss
View file @
15a893f
...
...
@@ -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
;
...
...
src/components/vhis-modal/vhis-modal.vue
View file @
15a893f
...
...
@@ -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>
...
...
Please
register
or
sign in
to post a comment