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
61
62
63
64
65
66
|
export const messages = {
en: {
reportCustomComponent: {
search: {
title: 'Search Conditions',
componentId: 'Please enter component ID',
name: 'Please enter component name',
componentType: 'Please select component type'
},
list: {
title: 'Report Components'
},
table: {
componentId: 'Component ID',
name: 'Component Name',
componentType: 'Component Type',
queryModel: 'Query Method',
remark: 'Description'
},
button: {
setCondition: 'Set Condition',
setFooter: 'Set Footer'
},
type: {
table: 'Table',
pie: 'Pie Chart',
input: 'Input',
select: 'Select',
date: 'Date'
},
fetchError: 'Failed to get report components'
}
},
zh: {
reportCustomComponent: {
search: {
title: '查询条件',
componentId: '请输入组件ID',
name: '请输入组件名称',
componentType: '请选择组件类型'
},
list: {
title: '报表组件'
},
table: {
componentId: '组件ID',
name: '组件名称',
componentType: '组件类型',
queryModel: '查询方式',
remark: '描述'
},
button: {
setCondition: '设置条件',
setFooter: '底部统计'
},
type: {
table: '表格',
pie: '饼状图',
input: '输入框',
select: '下拉框',
date: '日期'
},
fetchError: '获取报表组件失败'
}
}
}
|