tc.js
3.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
module.exports = {
message: {
login: 'Login',
Username: 'Username',
Password: 'Password',
Captcha: 'Captcha',
Language: 'Language',
zh: 'Chinese',
en: 'English'
},
nav: {
loginData: {
name: "登入",
path: "",
list: [{
name: "登入",
path: "/login",
value: ""
},
{
name: "修改密码",
path: "",
value: ""
},
{
name: "登出",
path: "",
value: ""
},
]
},
navList: [{
name: "產品介紹",
path: "/product",
list: []
},
{
name: "客戶服務",
path: "/custom/product",
list: [{
name: "聯系我們",
path: ""
},
{
name: "繳付保費",
path: "/payment/type"
},
{
name: "保單查詢",
path: "/custom/service"
},
{
name: "保單變更",
path: ""
},
{
name: "理賠申請",
path: ""
},
{
name: "預約服務",
path: "/reservation"
},
{
name: "投訴受理",
path: ""
},
{
name: "常用表格",
path: ""
},
]
},
{
name: "新聞資訊",
path: "/news/list",
list: []
},
{
name: "關於平安人壽",
path: "",
list: [{
name: "公司簡介",
path: "/profile"
},
{
name: "領導人概況",
path: ""
},
]
},
]
},
footer: {
hkPhone: "香港号码",
cnPhone: "内地号码",
aboutUs: "關於我們",
companyIntroduction: "集团介绍",
news: "新聞資訊",
joinUs: "加入我們",
helpCenter: "幫助中心",
privacy: "隱私政策",
terms: "使用條款",
map: "网站地图",
contactUs: "聯絡我們",
contactInformation: "联系方式",
service: "服务网点",
qrcode: "官方公眾號"
},
index: {
news: "新聞資訊",
newMore: "查看更多",
},
product: {
btnPosition: "預約服務",
iconProblem: "常見問題",
iconProcess: "投保流程",
iconProduct: "產品詳情"
},
customProduct: {
menu1: "聯系我們",
menu2: "繳付保費",
menu3: "保單查詢",
menu4: "保單變更",
menu5: "理賠申請",
menu6: "預約服務",
menu7: "投訴受理",
menu8: "常用表格",
},
customService: {
name: "客戶服務",
menu1: "保單查詢",
menu2: "保全變更",
menu3: "續期繳費",
menu4: "理賠申請",
menu5: "預約服務",
menu6: "投訴受理",
insuranceQuery: {
InsurantNumber: "保單號碼",
Insurant: "被保人",
InsurantName: "險種名稱",
InsurantAmount: "保險金額",
effectiveDate: "生效日期",
period: "保障年期",
t2Title: "保障內容",
t2InsurantClassify: "險種名稱",
t2InsurantAmount: "保額",
t3Title: "客戶資料",
t3InsurantNameCn: "投保人姓名(中文)",
t3InsurantNameEn: "投保人姓名(英文)",
t3InsurantIdNumber: "證件號碼",
t3InsurantContactAddress: "聯繫地址",
t3InsurantAddress: "居住地址",
t3InsurantMobile: "手提電話",
t3InsurantEmail: "電子郵箱",
t3InsuredNameCn: "受保人姓名(中文)",
t3InsuredNameEn: "受保人姓名(英文)",
t3InsuredBirthday: "出生日期",
t3InsuredIdNumber: "證件號碼",
t4Title: "受益人資料", // t4BeneficiaryInformation
t4NameCn: "姓名(中文)",
t4NameEn: "姓名(英文)",
t4Allocation: "分配比例",
t5Title: "繳費資料",
t5PaymentPeriod: "續費年期",
t5PaymentMethod: "繳費方式",
t5PaymentCurrency: "繳費幣種",
t5CurrentPremium: "當期保費",
t5PaymentBank: "繳費銀行",
t5PaymentAccount: "繳費帳號",
t6Title: "繳費記錄",
t6PaymentPeriod: "繳費期",
t6PaymentMethod: "繳費方式",
t6ClosingDate: "實收日期",
t6PaymentAmount: "繳費金額",
}
}
}