a42b3256
wuxw
HC小区管理系统前段vue版正在开发中
|
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
|
export const messages = {
en: {
adminAccount: {
search: {
title: 'Search Conditions',
acctType: 'Please select account type',
ownerName: 'Please enter account name',
idCard: 'Please enter ID number',
link: 'Please enter contact information'
},
list: {
title: 'Owner Account'
},
table: {
acctId: 'Account ID',
acctName: 'Account Name',
idCard: 'ID Number',
link: 'Phone Number',
acctTypeName: 'Account Type',
amount: 'Account Amount',
roomName: 'Deduction Room',
createTime: 'Create Time',
noRoom: 'None'
},
btn: {
detail: 'Account Details'
},
allCommunities: 'All Communities'
}
},
zh: {
adminAccount: {
search: {
title: '查询条件',
acctType: '请选择账户类型',
ownerName: '请输入账户名称',
idCard: '请输入身份证号',
link: '请输入联系方式'
},
list: {
title: '业主账户'
},
table: {
acctId: '账户编号',
acctName: '账户名称',
idCard: '身份证号',
link: '手机号',
acctTypeName: '账户类型',
amount: '账户金额',
roomName: '扣款房号',
createTime: '创建时间',
noRoom: '无'
},
btn: {
detail: '账户明细'
},
allCommunities: '全部小区'
}
}
}
|