Blame view

src/views/resource/assetInventoryManageLang.js 1.94 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: {
      assetInventoryManage: {
        search: {
          title: 'Search Conditions',
          staffName: 'Please enter inventory staff',
          state: 'Please select status',
          startTime: 'Please select start time',
          endTime: 'Please select end time'
        },
        list: {
          title: 'Asset Inventory',
          inventory: 'Inventory',
          cancelApply: 'Cancel Application',
          audit: 'Audit'
        },
        table: {
          aiId: 'Inventory No',
          name: 'Inventory Name',
          invTime: 'Inventory Time',
          shName: 'Inventory Warehouse',
          staffName: 'Inventory Staff',
          state: 'Status',
          createTime: 'Create Time'
        },
        delete: {
          title: 'Confirm Operation',
          confirmText: 'Are you sure to delete this asset inventory?'
        },
        cancel: {
          title: 'Confirm Operation',
          confirmText: 'Are you sure to cancel this asset inventory?',
          success: 'Cancel successfully',
          failed: 'Cancel failed'
        }
      }
    },
    zh: {
      assetInventoryManage: {
        search: {
          title: '查询条件',
          staffName: '请输入盘点人',
          state: '请选择状态',
          startTime: '请选择开始时间',
          endTime: '请选择结束时间'
        },
        list: {
          title: '资产盘点',
          inventory: '盘点',
          cancelApply: '取消申请',
          audit: '审核'
        },
        table: {
          aiId: '盘点单号',
          name: '盘点名称',
          invTime: '盘点时间',
          shName: '盘点仓库',
          staffName: '盘点人',
          state: '状态',
          createTime: '创建时间'
        },
        delete: {
          title: '确认操作',
          confirmText: '确定删除资产盘点?'
        },
        cancel: {
          title: '确认操作',
          confirmText: '确定取消该次资产盘点?',
          success: '取消成功',
          failed: '取消失败'
        }
      }
    }
  }