b4b89934 by joe

增加部分繁體內容

1 parent c3dc04aa
...@@ -113,12 +113,12 @@ module.exports = { ...@@ -113,12 +113,12 @@ module.exports = {
113 loginType1: "账密登录", 113 loginType1: "账密登录",
114 loginType2: "動態密碼登录", 114 loginType2: "動態密碼登录",
115 account: "賬號", 115 account: "賬號",
116 accountPlaceholder: "請輸入證件號/一账通用户名/手机号", 116 accountPlaceholder: "請輸入證件號/壹賬通用戶名/手機號",
117 password: "密碼", 117 password: "密碼",
118 passwordPlaceholder: "輸入登錄密碼", 118 passwordPlaceholder: "輸入登錄密碼",
119 verifyPlaceholder: "請輸入驗證碼", 119 verifyPlaceholder: "請輸入驗證碼",
120 agree: "同意", 120 agree: "同意",
121 protocol: "《平安一账通会员服务协议》", 121 protocol: "《平安壹賬通會員服務協議》",
122 login: "登入", 122 login: "登入",
123 register: "註冊", 123 register: "註冊",
124 forget: "忘記密碼", 124 forget: "忘記密碼",
...@@ -177,16 +177,16 @@ module.exports = { ...@@ -177,16 +177,16 @@ module.exports = {
177 yes: "是", 177 yes: "是",
178 no: "否", 178 no: "否",
179 contactTime: "期望联络时间 (当日、周末节假日不可选)", 179 contactTime: "期望联络时间 (当日、周末节假日不可选)",
180 notice1: "本表格所收集的个人资料根据「平安人寿香港个人资料收集声明」处理及只会被用作于联络 阁下之用。然而所收集的个人资料未经您明确授权将不会转移至「平安人寿香港个人资料收集声明」列明以外之第三者机构。您可选择不向我们提供所需的个人资料,惟这样可能导致我们不能联络您。您亦可根据「平安人寿香港个人资料收集声明」之权利查阅及更正个人资料。", 180 notice1: "本表格所收集的個人資料根據「平安人壽香港個人資料收集聲明」處理及只會被用作於聯絡 閣下之用。然而所收集的個人資料未經您明確授權將不會轉移至「平安人壽香港個人資料收集聲明」列明以外之第三者機構。您可選擇不向我們提供所需的個人資料,惟這樣可能導致我們不能聯絡您。您亦可根據「平安人壽香港個人資料收集聲明」之權利查閱及更正個人資料。",
181 notice2: "本人现确认明白并同意本人的个人资料根据中银人寿个人资料收集声明作以上述用途。", 181 notice2: "本人現確認明白並同意本人的個人資料根據中銀人壽個人資料收集聲明作以上述用途。",
182 }, 182 },
183 paymentType: { 183 paymentType: {
184 menu1: "親臨客服中心付款", 184 menu1: "親臨客服中心付款",
185 menu2: "网银付款", 185 menu2: "網銀付款",
186 menu3: "电汇付款", 186 menu3: "電匯付款",
187 menu4: "柜员机付款", 187 menu4: "櫃員機付款",
188 menu5: "「缴费灵」付款", 188 menu5: "「繳費靈」付款",
189 menu6: "香港政局", 189 menu6: "香港政局",
190 }, 190 },
191 product: { 191 product: {
192 btnPosition: "預約服務", 192 btnPosition: "預約服務",
......
...@@ -8,8 +8,27 @@ export default { ...@@ -8,8 +8,27 @@ export default {
8 data() { 8 data() {
9 return { 9 return {
10 key: 'value', 10 key: 'value',
11 dataList: [{ 11 dataList: [],
12 tit: "親臨客服中心付款", 12 curIndex: 0,
13 }
14 },
15 components: {},
16 computed: {
17 locale() {
18 return this.$i18n.locale || 'tc';
19 },
20 i18n() {
21 return this.$i18n.messages && this.$i18n.locale ? this.$i18n.messages[this.$i18n.locale] : {};
22 },
23 },
24 methods: {
25 onOverHandler(val) {
26 this.curIndex = val;
27 },
28 initData() {
29 let i18n = this.$i18n.locale;
30 let list = [{
31 tit: "亲临客服中心付款",
13 type: "", 32 type: "",
14 }, { 33 }, {
15 tit: "网银付款", 34 tit: "网银付款",
...@@ -26,25 +45,34 @@ export default { ...@@ -26,25 +45,34 @@ export default {
26 }, { 45 }, {
27 tit: "香港邮政局", 46 tit: "香港邮政局",
28 type: "", 47 type: "",
29 }], 48 }];
30 curIndex: 0, 49 if (i18n != 'zh') {
50 list = [{
51 tit: "親臨客服中心付款",
52 type: "",
53 }, {
54 tit: "網銀付款",
55 type: "",
56 }, {
57 tit: "電匯付款",
58 type: "",
59 }, {
60 tit: "櫃員機付款",
61 type: "",
62 }, {
63 tit: "「繳費靈」付款",
64 type: "",
65 }, {
66 tit: "香港郵政局",
67 type: "",
68 }];
69 }
70 this.$set(this, 'dataList', list);
31 } 71 }
32 }, 72 },
33 components: {}, 73 mounted() {
34 computed: { 74 this.initData();
35 locale() {
36 return this.$i18n.locale || 'tc';
37 },
38 i18n() {
39 return this.$i18n.messages && this.$i18n.locale ? this.$i18n.messages[this.$i18n.locale] : {};
40 },
41 },
42 methods: {
43 onOverHandler(val) {
44 this.curIndex = val;
45 },
46 initData() {}
47 }, 75 },
48 mounted() {}, 76 created() {
49 created() {} 77 }
50 } 78 }
......
1 1
2 <template> 2 <template>
3 <div class="content"> 3 <div class="content">
4 <div v-if="$i18n.locale != 'zh'"> 4 <div v-if="$i18n.locale == 'zh'">
5 <div class="top-space"></div> 5 <div class="top-space"></div>
6 <h2 class="tit">隐私声明</h2> 6 <h2 class="tit">隐私声明</h2>
7 <div class="box desc"> 7 <div class="box desc">
......