index.js
5.16 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
const memberEn = {
mlogin: {
code: 'Please input the social credit or the organization code', // 社会信用代码或组织机构代码
password: 'Please input the password', // 密码
verificationCode: 'Please input the verification code', // 验证码
warningTip: "Tip: Please input your unit's login name and password for the membership system(unit member)", // 提示
membershipGuide: 'Membership Guide', // 会员指南
FAQ: 'Membership Handling FAQ', // 户籍办理常见问题
memberRules: 'Member Management Rules' // 会员管理规则
},
mcontact: {
contactName: 'Contact Name', // 联系人姓名
contactType: 'Contact Type', // 联系人类型
dept: 'Department', // 所在部门
position: 'Position', // 职务
officePhone: 'Office Phone', // 办公电话
mobilePhone: 'Mobile Phone' // 移动电话
},
mdetail: {
socialCode: 'Uniform Social Credit Code', // 社会统一信用代码
orgCode: 'Organization Code', // 组织机构代码
memberStatus: 'Membership Status', // 会员状态
memberLevel: 'Membership Level', // 会员级别
memberType: 'Membership Type', // 会籍类别
establishedTime: 'Established Time', // 成立时间
corporateRepresentative: 'Corporate Representative', // 法人代表
registeredCapital: 'Registered Capital(Ten Thousand)', // 注册资本(万元)
orgType: 'Organization Type', // 机构类型
address: 'Address', // 通讯地址
representative: 'Company Representative Name', // 单位代表姓名
businessSituation: 'Business Situation', // 业务开展情况
contactList: 'Contact List' // 联系人列表
},
memberservice: {
tip1: 'Tip: Please log in the Membership System if you want to do some changes', // 提示:如需变更请登入会员系统办理
tip2: 'Tip: Please log in the Membership System if the informations like contact person, mail address, registered address, corporate representative and so on are changed.', // 提示:如联系人,通讯地址,注册地址,法人代表等变更,请登录会员系统办理
more: 'more', // 查看更多
join: 'Join', // 入会
quit: 'Quit', // 退会
change: 'Change', // 变更
},
mbusiness: {
updateTime: 'update time', // 更新时间
},
mprogress: {
joinProgress: 'Join Progress', // 入会进度
quitProgress: 'Quit Progress', // 退会进度
changeProgress: 'Change Progress', // 变更进度
organizationName: 'Organization Name', // 单位名称变更
organizationRepresentive: 'Organization Representive', // 单位代表变更
membershipType: 'Membership Type', // 会籍类别变更
}
}
const memberZh = {
mlogin: {
code: '请输入社会信用代码或组织机构代码', // 社会信用代码或组织机构代码
password: '请输入密码', // 密码
verificationCode: '请输入验证码', // 验证码
warningTip: "提示:请输入贵单位会员系统的登录名及密码登录(单位会员)",
membershipGuide: '入会指南', // 会员指南
FAQ: '会籍办理常见问题', // 户籍办理常见问题
memberRules: '会籍管理规则' // 会员管理规则
},
mcontact: {
contactName: '联系人姓名', // 联系人姓名
contactType: '联系人类型', // 联系人类型
dept: '所在部门', // 所在部门
position: '职务', // 职务
officePhone: '办公电话', // 办公电话
mobilePhone: '移动电话' // 移动电话
},
mdetail: {
socialCode: '社会统一信用代码', // 社会统一信用代码
orgCode: '组织机构代码', // 组织机构代码
memberStatus: '会员状态', // 会员状态
memberLevel: '会员级别', // 会员级别
memberType: '会籍类别', // 会籍类别
establishedTime: '成立时间', // 成立时间
corporateRepresentative: '法人代表', // 法人代表
registeredCapital: '注册资本(万元)', // 注册资本(万元)
orgType: '机构类型', // 机构类型
address: '通讯地址', // 通讯地址
representative: '单位代表姓名', // 单位代表姓名
businessSituation: '业务开展情况', // 业务开展情况
contactList: '联系人列表' // 联系人列表
},
memberservice: {
tip1: '提示:如需变更请登入会员系统办理', // 提示:如需变更请登入会员系统办理
tip2: '提示:如联系人,通讯地址,注册地址,法人代表等变更,请登录会员系统办理', // 提示:如联系人,通讯地址,注册地址,法人代表等变更,请登录会员系统办理
more: '查看更多', // 查看更多
join: '入会', // 入会
quit: '退会', // 退会
change: '变更', // 变更
},
mbusiness: {
updateTime: '更新时间', // 更新时间
},
mprogress: {
joinProgress: '入会进度', // 入会进度
quitProgress: '退会进度', // 退会进度
changeProgress: '变更进度', // 变更进度
organizationName: '单位名称变更', // 单位名称变更
organizationRepresentive: '单位代表变更', // 单位代表变更
membershipType: '会籍类别变更', // 会籍类别变更
}
}
export default {
memberEn,
memberZh
};