Blame view

src/views/system/workflowSettingManageLang.js 2.8 KB
03f63ab4   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
  export const messages = {
    en: {
      workflowSettingManage: {
        title: 'Process Settings',
        flowName: 'Process Name',
        flowNamePlaceholder: 'Required, please enter the title',
        description: 'Process Description',
        descriptionPlaceholder: 'Optional, please enter the process description',
        submitterEnd: 'Submitter End',
        submitterEndPlaceholder: 'Required, please select whether the submitter needs to confirm',
        yes: 'Yes',
        no: 'No',
        flowSteps: 'Process Steps',
        addStep: 'Add Step',
        step: 'Step',
        selectStaff: 'Select Staff',
        normalFlow: 'Normal Process',
        countersign: 'Countersign',
        deleteStep: 'Delete Step',
        addStaff: 'Add Staff',
        deleteStaff: 'Delete Staff',
        instructions: 'Instructions',
        instruction1: 'At least two steps are required, the last step must be a fixed warehouse manager',
        instruction2: 'Warehouse managers cannot participate in the review process',
        instruction3: 'Warehouse managers cannot be dynamically assigned',
        instruction4: 'Must configure the corresponding process',
        invalidOperation: 'Invalid operation'
      },
      selectStaff: {
        title: 'Select Staff',
        orgInfo: 'Organization Information',
        staffInfo: 'Staff Information',
        submitter: 'Submitter',
        dynamicAssign: 'Dynamic Assign',
        fetchStaffError: 'Failed to fetch staff information'
      },
      orgTree: {
        fetchError: 'Failed to fetch organization tree'
      }
    },
    zh: {
      workflowSettingManage: {
        title: '流程设置',
        flowName: '流程名称',
        flowNamePlaceholder: '必填,请填写标题',
        description: '流程说明',
        descriptionPlaceholder: '选填,请填写流程说明',
        submitterEnd: '提交者结束',
        submitterEndPlaceholder: '必填,请选择最后环节是否提交者确认',
        yes: '是',
        no: '否',
        flowSteps: '流程步骤',
        addStep: '添加步骤',
        step: '第',
        selectStaff: '选择员工',
        normalFlow: '普通流程',
        countersign: '会签',
        deleteStep: '删除步骤',
        addStaff: '添加员工',
        deleteStaff: '删除员工',
        instructions: '说明',
        instruction1: '添加步骤必须要两步以上,最后一步为固定仓库管理员',
        instruction2: '仓库管理不能参与审核流程',
        instruction3: '仓库管理员不能为动态指定人员',
        instruction4: '必须配置对应的流程',
        invalidOperation: '操作错误'
      },
      selectStaff: {
        title: '选择员工',
        orgInfo: '组织信息',
        staffInfo: '员工信息',
        submitter: '提交者',
        dynamicAssign: '动态指定',
        fetchStaffError: '获取员工信息失败'
      },
      orgTree: {
        fetchError: '获取组织树失败'
      }
    }
  }