20e526fa
wuxw
完成业务会功能
|
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
|
export const messages = {
en: {
editOwnerCommittee: {
title: 'Edit Owner Committee',
name: 'Name',
nameRequired: 'Name is required',
namePlaceholder: 'Please enter name',
sex: 'Gender',
sexRequired: 'Gender is required',
sexPlaceholder: 'Please select gender',
male: 'Male',
female: 'Female',
phone: 'Phone',
phoneRequired: 'Phone is required',
phoneLength: 'Phone must be 11 digits',
phonePlaceholder: 'Please enter phone number',
idCard: 'ID Card',
idCardRequired: 'ID Card is required',
idCardLength: 'ID Card must be 18 digits',
idCardPlaceholder: 'Please enter ID card number',
address: 'Address',
addressRequired: 'Address is required',
addressMaxLength: 'Address cannot exceed 256 characters',
addressPlaceholder: 'Please enter address',
position: 'Position',
positionRequired: 'Position is required',
positionMaxLength: 'Position cannot exceed 64 characters',
positionPlaceholder: 'Please enter position',
post: 'Post',
postRequired: 'Post is required',
postMaxLength: 'Post cannot exceed 64 characters',
postPlaceholder: 'Please enter post',
postDesc: 'Post Description',
postDescMaxLength: 'Description cannot exceed 64 characters',
postDescPlaceholder: 'Optional, enter description',
appointTime: 'Term',
appointTimeRequired: 'Term is required',
appointTimeMaxLength: 'Term cannot exceed 256 characters',
appointTimePlaceholder: 'Please enter term',
curTime: 'Tenure',
curTimeRequired: 'Tenure is required',
curTimeMaxLength: 'Tenure cannot exceed 256 characters',
curTimePlaceholder: 'Please enter tenure',
status: 'Status',
statusRequired: 'Status is required',
statusPlaceholder: 'Please select status',
onDuty: 'On Duty',
leave: 'Leave',
remark: 'Remark',
remarkMaxLength: 'Remark cannot exceed 200 characters',
remarkPlaceholder: 'Optional, enter remark',
emergencyContact: 'Emergency Contact',
relation: 'Relationship',
relationPlaceholder: 'Required, enter relationship',
contactName: 'Contact Name',
contactNamePlaceholder: 'Required, enter name',
contactPhone: 'Contact Phone',
contactPhonePlaceholder: 'Required, enter phone',
contactAddress: 'Contact Address',
contactAddressPlaceholder: 'Required, enter address',
updateSuccess: 'Update successful',
fetchError: 'Failed to fetch data'
}
},
zh: {
editOwnerCommittee: {
title: '修改业委会',
name: '姓名',
nameRequired: '姓名不能为空',
namePlaceholder: '请填写姓名',
sex: '性别',
sexRequired: '性别不能为空',
sexPlaceholder: '请选择性别',
male: '男',
female: '女',
phone: '电话',
phoneRequired: '电话不能为空',
phoneLength: '电话必须为11位',
phonePlaceholder: '请填写电话',
idCard: '身份证号码',
idCardRequired: '身份证号码不能为空',
idCardLength: '身份证号码必须为18位',
idCardPlaceholder: '请填写身份证号码',
address: '住址',
addressRequired: '住址不能为空',
addressMaxLength: '住址不能超过256个字符',
addressPlaceholder: '请填写住址',
position: '职位',
positionRequired: '职位不能为空',
positionMaxLength: '职位不能超过64个字符',
positionPlaceholder: '请填写职位',
post: '岗位',
postRequired: '岗位不能为空',
postMaxLength: '岗位不能超过64个字符',
postPlaceholder: '请填写岗位',
postDesc: '岗位描述',
postDescMaxLength: '描述不能超过64个字符',
postDescPlaceholder: '选填,请填写岗位描述',
appointTime: '届期',
appointTimeRequired: '届期不能为空',
appointTimeMaxLength: '届期不能超过256个字符',
appointTimePlaceholder: '请填写届期',
curTime: '任期',
curTimeRequired: '任期不能为空',
curTimeMaxLength: '任期不能超过256个字符',
curTimePlaceholder: '请填写任期',
status: '状态',
statusRequired: '状态不能为空',
statusPlaceholder: '请选择状态',
onDuty: '在职',
leave: '离职',
remark: '备注',
remarkMaxLength: '备注不能超过200个字符',
remarkPlaceholder: '选填,请填写备注',
emergencyContact: '紧急联系人',
relation: '成员关系',
relationPlaceholder: '必填,请填写关系',
contactName: '姓名',
contactNamePlaceholder: '必填,请填写名称',
contactPhone: '联系电话',
contactPhonePlaceholder: '必填,请填写电话',
contactAddress: '住址',
contactAddressPlaceholder: '必填,请填写地址',
updateSuccess: '修改成功',
fetchError: '获取数据失败'
}
}
}
|