Blame view

src/views/resource/itemOutManageLang.js 2.1 KB
fc7cb950   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
  export const messages = {
    en: {
      itemOutManage: {
        search: {
          title: 'Search Conditions',
          applyOrderId: 'Please enter order number',
          applyUserName: 'Please enter applicant name',
          resName: 'Please enter item name',
          startTime: 'Please select start time',
          endTime: 'Please select end time'
        },
        list: {
          title: 'Item Outbound Management',
          apply: 'Apply for Outbound'
        },
        table: {
          applyOrderId: 'Order Number',
          resourceNames: 'Item',
          userName: 'Applicant',
          createUserName: 'Operator',
          createTime: 'Application Time',
          stateName: 'Status',
          warehousingWay: 'Outbound Method',
          directOut: 'Direct Outbound',
          auditOut: 'Audit Outbound',
          flowChart: 'Flow Chart',
          cancelApply: 'Cancel Application',
          operation: 'Operation'
        }
      },
      deleteItemOut: {
        title: 'Confirm Operation',
        confirmText: 'Are you sure to cancel the outbound application?',
        deleteSuccess: 'Cancel outbound application successfully',
        cancelText: 'Cancel',
      }
    },
    zh: {
      itemOutManage: {
        search: {
          title: '查询条件',
          applyOrderId: '请输入单号',
          applyUserName: '请填写申请人姓名',
          resName: '请填写物品名称',
          startTime: '请选择开始时间',
          endTime: '请选择结束时间'
        },
        list: {
          title: '物品领用管理',
          apply: '领用申请'
        },
        table: {
          applyOrderId: '单号',
          resourceNames: '物品',
          userName: '申请人',
          createUserName: '操作人',
          createTime: '申请时间',
          stateName: '状态',
          warehousingWay: '领用方式',
          directOut: '直接出库',
          auditOut: '审核出库',
          flowChart: '流程图',
          cancelApply: '取消领用',
          operation: '操作'
        }
      },
      deleteItemOut: {
        title: '确认操作',
        confirmText: '确定取消领用吗?',
        deleteSuccess: '取消领用成功',
        cancelText: '点错了',
      }
    }
  }