Blame view

src/views/oa/addComplaintTypeLang.js 1.3 KB
0a06b2d1   wuxw   开发完成投诉建议
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  export const messages = {
    en: {
      addComplaintType: {
        title: 'Add Complaint Type',
        typeName: 'Type Name',
        typeNamePlaceholder: 'Required, please enter type name',
        notifyWay: 'Notification Method',
        notifyWayPlaceholder: 'Required, please select notification method',
        appraiseReply: 'Evaluation Reply',
        appraiseReplyPlaceholder: 'Required, please select evaluation reply',
        remark: 'Remark',
        remarkPlaceholder: 'Optional, please enter remark',
        selectStaff: 'Select Staff',
        sms: 'SMS',
        wechat: 'WeChat',
        workLicense: 'WeChat + Work License',
        autoReply: 'Auto Reply',
        manualReply: 'Manual Reply'
      },
0a06b2d1   wuxw   开发完成投诉建议
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
    },
    zh: {
      addComplaintType: {
        title: '添加投诉类型',
        typeName: '类型名称',
        typeNamePlaceholder: '必填,请填写类型名称',
        notifyWay: '通知方式',
        notifyWayPlaceholder: '必填,请选择通知方式',
        appraiseReply: '评价回复',
        appraiseReplyPlaceholder: '必填,请选择评价回复',
        remark: '备注',
        remarkPlaceholder: '选填,请填写备注',
        selectStaff: '选择员工',
        sms: '短信',
        wechat: '微信',
        workLicense: '微信+员工工牌',
        autoReply: '自动回复',
        manualReply: '人工回复'
      },
0a06b2d1   wuxw   开发完成投诉建议
39
40
    }
  }