Blame view

src/views/work/repairReturnVisitLang.js 1.67 KB
4927ce37   wuxw   开发完成报修功能
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  export const messages = {
    en: {
      repairReturnVisit: {
        queryTitle: 'Query Conditions',
        listTitle: 'Repair Return Visit',
        repairId: 'Work Order No.',
        location: 'Location',
        repairType: 'Repair Type',
        repairName: 'Repair Person',
        contact: 'Contact',
        appointmentTime: 'Appointment Time',
        operation: 'Operation',
        visit: 'Visit',
        detail: 'Detail',
        repairIdPlaceholder: 'Please enter work order number',
        repairTypePlaceholder: 'Please select repair type',
        repairNamePlaceholder: 'Please enter repair person',
        telPlaceholder: 'Please enter repair phone',
        statePlaceholder: 'Please select visit status',
        waiting: 'Pending Visit',
72de60dc   wuxw   优化报修完成
21
22
23
24
25
        finish: 'Visited',
        satisfaction: 'Satisfaction',
        visitContent: 'Visit Content',
        satisfied: 'Satisfied',
        unsatisfied: 'Unsatisfied'
4927ce37   wuxw   开发完成报修功能
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
      }
    },
    zh: {
      repairReturnVisit: {
        queryTitle: '查询条件',
        listTitle: '报修回访',
        repairId: '工单编码',
        location: '位置',
        repairType: '报修类型',
        repairName: '报修人',
        contact: '联系方式',
        appointmentTime: '预约时间',
        operation: '操作',
        visit: '回访',
        detail: '详情',
        repairIdPlaceholder: '请输入工单编号',
        repairTypePlaceholder: '请选择报修类型',
        repairNamePlaceholder: '请输入报修人',
        telPlaceholder: '请输入报修电话',
        statePlaceholder: '请选择回访状态',
        waiting: '待回访',
72de60dc   wuxw   优化报修完成
47
48
49
50
51
        finish: '已回访',
        satisfaction: '满意度',
        visitContent: '回访内容',
        satisfied: '满意',
        unsatisfied: '不满意'
4927ce37   wuxw   开发完成报修功能
52
53
54
      }
    }
  }