e5d43009
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
|
export const messages = {
en: {
complaintDetail: {
title: 'Complaint Details',
workflow: 'Workflow',
evaluation: 'Evaluation',
type: 'Type'
},
complaintDetailInfo: {
orderNo: 'Order No:',
type: 'Type:',
house: 'House:',
contact: 'Contact:',
phone: 'Phone:',
status: 'Status:',
createTime: 'Create Time:',
content: 'Content:'
},
complaintDetailEvent: {
type: 'Type',
operator: 'Operator',
remark: 'Remark',
time: 'Time',
submit: 'Submit',
process: 'Process',
evaluate: 'Evaluate',
reply: 'Reply'
},
complaintDetailAppraise: {
userName: 'User Name',
content: 'Content',
score: 'Score',
status: 'Status',
time: 'Time',
replyUser: 'Reply User',
replyContent: 'Reply Content',
operation: 'Operation',
reply: 'Reply',
waitReply: 'Wait Reply',
replied: 'Replied'
},
replyComplaintAppraise: {
title: 'Reply Evaluation',
content: 'Content',
placeholder: 'Required, please enter reply content',
required: 'Reply content is required',
maxLength: 'Reply content exceeds 500 characters',
success: 'Reply successfully'
},
complaintDetailType: {
typeName: 'Type Name',
notifyWay: 'Notify Way',
appraiseReply: 'Appraise Reply',
handler: 'Handler',
createTime: 'Create Time',
sms: 'SMS',
wechat: 'WeChat',
autoReply: 'Auto Reply',
manualReply: 'Manual Reply'
}
},
zh: {
complaintDetail: {
title: '投诉详情',
workflow: '工单流转',
evaluation: '工单评价',
type: '工单类型'
},
complaintDetailInfo: {
orderNo: '订单编号:',
type: '类型:',
house: '房屋:',
contact: '联系人:',
phone: '联系电话:',
status: '状态:',
createTime: '创建时间:',
content: '投诉内容:'
},
complaintDetailEvent: {
type: '类型',
operator: '操作人',
remark: '说明',
time: '时间',
submit: '提交',
process: '投诉处理',
evaluate: '评价',
reply: '评价回复'
},
complaintDetailAppraise: {
userName: '用户名称',
content: '评价内容',
score: '评价得分',
status: '评价状态',
time: '评价时间',
replyUser: '回复人',
replyContent: '回复内容',
operation: '操作',
reply: '回复',
waitReply: '待回复',
replied: '已回复'
},
replyComplaintAppraise: {
title: '回复评价',
content: '内容',
placeholder: '必填,请填写回复内容',
required: '回复内容不能为空',
maxLength: '回复内容超过500个字',
success: '回复成功'
},
complaintDetailType: {
typeName: '类型名称',
notifyWay: '通知方式',
appraiseReply: '评价回复',
handler: '处理人',
createTime: '创建时间',
sms: '短信',
wechat: '微信',
autoReply: '自动回复',
manualReply: '人工回复'
}
}
}
|