Blame view

src/views/work/adminWorkDetailLang.js 2.9 KB
300e6aff   wuxw   开发完成admin 工作单 和工作...
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
  export const messages = {
    en: {
      adminWorkDetail: {
        title: 'Work Order Details',
        workId: 'Work Order ID',
        workName: 'Work Order Name',
        typeName: 'Type Name',
        workCycle: 'Type',
        once: 'One-time Work Order',
        periodic: 'Periodic Work Order',
        startTime: 'Start Time',
        endTime: 'End Time',
        createUserName: 'Creator',
        curStaffName: 'Processor',
        curCopyName: 'Copy To',
        stateName: 'Status',
        createTime: 'Create Time',
        attachment: 'Attachment',
        content: 'Content',
        processor: 'Processor',
        processContent: 'Process Content',
        copyTo: 'Copy To',
        workFlow: 'Work Flow',
        flowAttachment: 'Flow Attachment',
        workType: 'Work Type',
        taskId: 'Task ID',
        preProcessor: 'Previous Processor',
        taskPeriod: 'Task Period',
        remark: 'Remark',
        finishTime: 'Finish Time',
        copyProcessed: 'Copy Processed',
        processed: 'Processed',
        pending: 'Pending',
        score: 'Score',
        deductionMoney: 'Deduction Amount',
        deductionReason: 'Deduction Reason',
        deductionPerson: 'Deduction Person',
        notifyType: 'Notification Type',
        wechat: 'WeChat',
        sms: 'SMS',
        unknown: 'Unknown',
        completeHours: 'Complete Hours',
        cycle: 'Cycle',
        monthDay: 'Month/Day',
        weekly: 'Weekly',
        month: 'Month',
        day: 'Day',
        week: 'Week',
        fetchError: 'Failed to fetch work order details'
      }
    },
    zh: {
      adminWorkDetail: {
        title: '工作单详情',
        workId: '工单编号',
        workName: '工单名称',
        typeName: '类型名称',
        workCycle: '标识',
        once: '一次性工单',
        periodic: '周期性工单',
        startTime: '开始时间',
        endTime: '结束时间',
        createUserName: '发起人',
        curStaffName: '处理人',
        curCopyName: '抄送人',
        stateName: '状态',
        createTime: '创建时间',
        attachment: '附件',
        content: '内容',
        processor: '处理人',
        processContent: '处理内容',
        copyTo: '抄送人',
        workFlow: '工作单流转',
        flowAttachment: '流转附件',
        workType: '工作单类型',
        taskId: '任务编号',
        preProcessor: '前处理人',
        taskPeriod: '任务有效期',
        remark: '说明',
        finishTime: '完成时间',
        copyProcessed: '抄送人已办理',
        processed: '处理人已办理',
        pending: '待处理',
        score: '评分',
        deductionMoney: '扣款金额',
        deductionReason: '扣款原因',
        deductionPerson: '扣款人',
        notifyType: '通知方式',
        wechat: '微信',
        sms: '短信',
        unknown: '未知',
        completeHours: '完成小时',
        cycle: '周期',
        monthDay: '月/天',
        weekly: '按周',
        month: '月',
        day: '日',
        week: '周',
        fetchError: '获取工作单详情失败'
      }
    }
  }