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
b4b89934
authored
2019-10-31 22:01:37 +0800
by
joe
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
增加部分繁體內容
1 parent
c3dc04aa
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
58 additions
and
30 deletions
src/common/lang/tc.js
src/pages/payment-type/payment-type.js
src/pages/privacy/privacy.vue
src/common/lang/tc.js
View file @
b4b8993
...
...
@@ -113,12 +113,12 @@ module.exports = {
loginType1
:
"账密登录"
,
loginType2
:
"動態密碼登录"
,
account
:
"賬號"
,
accountPlaceholder
:
"請輸入證件號/
一账通用户名/手机号
"
,
accountPlaceholder
:
"請輸入證件號/
壹賬通用戶名/手機號
"
,
password
:
"密碼"
,
passwordPlaceholder
:
"輸入登錄密碼"
,
verifyPlaceholder
:
"請輸入驗證碼"
,
agree
:
"同意"
,
protocol
:
"《平安
一账通会员服务协议
》"
,
protocol
:
"《平安
壹賬通會員服務協議
》"
,
login
:
"登入"
,
register
:
"註冊"
,
forget
:
"忘記密碼"
,
...
...
@@ -177,16 +177,16 @@ module.exports = {
yes
:
"是"
,
no
:
"否"
,
contactTime
:
"期望联络时间 (当日、周末节假日不可选)"
,
notice1
:
"本表格所收集的
个人资料根据「平安人寿香港个人资料收集声明」处理及只会被用作于联络 阁下之用。然而所收集的个人资料未经您明确授权将不会转移至「平安人寿香港个人资料收集声明」列明以外之第三者机构。您可选择不向我们提供所需的个人资料,惟这样可能导致我们不能联络您。您亦可根据「平安人寿香港个人资料收集声明」之权利查阅及更正个人资
料。"
,
notice2
:
"本人
现确认明白并同意本人的个人资料根据中银人寿个人资料收集声
明作以上述用途。"
,
notice1
:
"本表格所收集的
個人資料根據「平安人壽香港個人資料收集聲明」處理及只會被用作於聯絡 閣下之用。然而所收集的個人資料未經您明確授權將不會轉移至「平安人壽香港個人資料收集聲明」列明以外之第三者機構。您可選擇不向我們提供所需的個人資料,惟這樣可能導致我們不能聯絡您。您亦可根據「平安人壽香港個人資料收集聲明」之權利查閱及更正個人資
料。"
,
notice2
:
"本人
現確認明白並同意本人的個人資料根據中銀人壽個人資料收集聲
明作以上述用途。"
,
},
paymentType
:
{
menu1
:
"親臨客服中心付款"
,
menu2
:
"
网银
付款"
,
menu3
:
"
电汇
付款"
,
menu4
:
"
柜员机
付款"
,
menu5
:
"「
缴费灵
」付款"
,
menu6
:
"香港
邮
政局"
,
menu2
:
"
網銀
付款"
,
menu3
:
"
電匯
付款"
,
menu4
:
"
櫃員機
付款"
,
menu5
:
"「
繳費靈
」付款"
,
menu6
:
"香港
郵
政局"
,
},
product
:
{
btnPosition
:
"預約服務"
,
...
...
src/pages/payment-type/payment-type.js
View file @
b4b8993
...
...
@@ -8,8 +8,27 @@ export default {
data
()
{
return
{
key
:
'value'
,
dataList
:
[{
tit
:
"親臨客服中心付款"
,
dataList
:
[],
curIndex
:
0
,
}
},
components
:
{},
computed
:
{
locale
()
{
return
this
.
$i18n
.
locale
||
'tc'
;
},
i18n
()
{
return
this
.
$i18n
.
messages
&&
this
.
$i18n
.
locale
?
this
.
$i18n
.
messages
[
this
.
$i18n
.
locale
]
:
{};
},
},
methods
:
{
onOverHandler
(
val
)
{
this
.
curIndex
=
val
;
},
initData
()
{
let
i18n
=
this
.
$i18n
.
locale
;
let
list
=
[{
tit
:
"亲临客服中心付款"
,
type
:
""
,
},
{
tit
:
"网银付款"
,
...
...
@@ -26,25 +45,34 @@ export default {
},
{
tit
:
"香港邮政局"
,
type
:
""
,
}],
curIndex
:
0
,
}];
if
(
i18n
!=
'zh'
)
{
list
=
[{
tit
:
"親臨客服中心付款"
,
type
:
""
,
},
{
tit
:
"網銀付款"
,
type
:
""
,
},
{
tit
:
"電匯付款"
,
type
:
""
,
},
{
tit
:
"櫃員機付款"
,
type
:
""
,
},
{
tit
:
"「繳費靈」付款"
,
type
:
""
,
},
{
tit
:
"香港郵政局"
,
type
:
""
,
}];
}
this
.
$set
(
this
,
'dataList'
,
list
);
}
},
components
:
{},
computed
:
{
locale
()
{
return
this
.
$i18n
.
locale
||
'tc'
;
},
i18n
()
{
return
this
.
$i18n
.
messages
&&
this
.
$i18n
.
locale
?
this
.
$i18n
.
messages
[
this
.
$i18n
.
locale
]
:
{};
},
},
methods
:
{
onOverHandler
(
val
)
{
this
.
curIndex
=
val
;
},
initData
()
{}
mounted
()
{
this
.
initData
();
},
mounted
()
{},
created
()
{
}
created
()
{
}
}
...
...
src/pages/privacy/privacy.vue
View file @
b4b8993
<
template
>
<div
class=
"content"
>
<div
v-if=
"$i18n.locale
!
= 'zh'"
>
<div
v-if=
"$i18n.locale
=
= 'zh'"
>
<div
class=
"top-space"
></div>
<h2
class=
"tit"
>
隐私声明
</h2>
<div
class=
"box desc"
>
...
...
Please
register
or
sign in
to post a comment