daaebda8
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
|
export const messages = {
en: {
maintainanceStandard: {
search: {
title: 'Search Conditions',
standardName: 'Please select maintenance item'
},
list: {
title: 'Maintenance Standard'
},
table: {
standardName: 'Maintenance Standard',
itemCount: 'Inspection Items',
item: 'Items',
remark: 'Remark',
createTime: 'Create Time'
},
form: {
standardName: 'Maintenance Item',
remark: 'Remark'
},
placeholder: {
standardName: 'Required, please fill in the maintenance item',
remark: 'Required, please fill in the remark'
},
rules: {
standardName: 'Maintenance item cannot be empty',
standardNameMax: 'Maintenance item cannot exceed 256 characters',
remark: 'Remark cannot be empty',
remarkMax: 'Remark cannot exceed 512 characters',
standardId: 'ID cannot be empty'
},
add: {
title: 'Add Maintenance Standard'
},
edit: {
title: 'Edit Maintenance Standard'
},
delete: {
title: 'Confirm Operation',
confirmText: 'Are you sure to delete this maintenance standard?'
},
message: {
addSuccess: 'Add successfully',
addFailed: 'Add failed',
editSuccess: 'Edit successfully',
editFailed: 'Edit failed',
deleteSuccess: 'Delete successfully',
deleteFailed: 'Delete failed',
fetchError: 'Failed to fetch data'
}
}
},
zh: {
maintainanceStandard: {
search: {
title: '查询条件',
standardName: '请选择保养项目'
},
list: {
title: '保养标准'
},
table: {
standardName: '保养标准',
itemCount: '检查项',
item: '检查项',
remark: '备注',
createTime: '创建时间'
},
form: {
standardName: '保养项目',
remark: '备注'
},
placeholder: {
standardName: '必填,请填写保养项目',
remark: '必填,请填写备注'
},
rules: {
standardName: '保养项目不能为空',
standardNameMax: '保养项目不能超过256个字符',
remark: '备注不能为空',
remarkMax: '备注不能超过512个字符',
standardId: '编号不能为空'
},
add: {
title: '添加保养标准'
},
edit: {
title: '修改保养标准'
},
delete: {
title: '请确认您的操作',
confirmText: '确定删除保养标准?'
},
message: {
addSuccess: '添加成功',
addFailed: '添加失败',
editSuccess: '修改成功',
editFailed: '修改失败',
deleteSuccess: '删除成功',
deleteFailed: '删除失败',
fetchError: '获取数据失败'
}
}
}
}
|