0fbb1447
wuxw
vcFramework.js 转v...
|
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
|
export const messages = {
en: {
copyWork: {
search: {
title: 'Search Conditions',
workName: 'Work Order Name',
createUser: 'Creator',
startTime: 'Start Time',
endTime: 'End Time'
},
list: {
title: 'Work Orders Copied to Me'
},
table: {
id: 'ID',
workName: 'Work Order Name',
typeName: 'Type Name',
workCycle: 'Cycle',
startTime: 'Start Time',
endTime: 'End Time',
createUser: 'Creator',
handler: 'Handler',
copyUser: 'Copy To',
status: 'Status',
createTime: 'Create Time'
},
state: {
all: 'All',
W: 'Pending',
C: 'Processed'
},
cycle: {
once: 'One-time',
periodic: 'Periodic'
},
audit: {
title: 'Read Note',
message: 'Note',
messagePlaceholder: 'Required, please fill in the note'
},
fetchError: 'Failed to fetch work orders'
}
},
zh: {
copyWork: {
search: {
title: '查询条件',
workName: '工单名称',
createUser: '发起人',
startTime: '开始时间',
endTime: '结束时间'
},
list: {
title: '抄送我的工作单'
},
table: {
id: '编号',
workName: '工单名称',
typeName: '类型名称',
workCycle: '标识',
startTime: '开始时间',
endTime: '结束时间',
createUser: '发起人',
handler: '处理人',
copyUser: '抄送人',
status: '状态',
createTime: '创建时间'
},
state: {
all: '全部',
W: '待处理',
C: '已处理'
},
cycle: {
once: '一次性工单',
periodic: '周期性工单'
},
audit: {
title: '已阅说明',
message: '说明',
messagePlaceholder: '必填,请填写说明'
},
fetchError: '获取工单列表失败'
}
}
}
|