b4b89934 by joe

增加部分繁體內容

1 parent c3dc04aa
......@@ -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: "預約服務",
......
......@@ -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() {
}
}
......
<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">
......