Blame view

src/views/work/itemReleaseManageLang.js 4.39 KB
5760f7b9   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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
  export const messages = {
    en: {
      itemReleaseManage: {
        search: {
          title: 'Search Conditions',
          more: 'More',
          hide: 'Hide'
        },
        list: {
          title: 'Item Release'
        },
        form: {
          releaseType: 'Release Type',
          applyCompany: 'Apply Company',
          applyPerson: 'Applicant',
          idCard: 'ID Card',
          phone: 'Phone',
          passTime: 'Pass Time',
          releaseItems: 'Release Items',
          itemAmount: 'Item Amount',
          status: 'Status',
          carNumber: 'Car Number',
          remark: 'Remark'
        },
        table: {
          orderNo: 'Order No',
          releaseType: 'Release Type',
          applyCompany: 'Apply Company',
          applyPerson: 'Applicant',
          idCard: 'ID Card',
          phone: 'Phone',
          passTime: 'Pass Time',
          items: 'Items',
          status: 'Status',
          carNumber: 'Car Number'
        },
        button: {
          applyRelease: 'Apply Release',
          viewItems: 'View Items'
        },
        placeholder: {
          selectReleaseType: 'Please select release type',
          selectApplyCompany: 'Please select apply company',
          selectApplyPerson: 'Please select applicant',
          selectIdCard: 'Please input ID card',
          selectPhone: 'Please input phone',
          selectStatus: 'Please select status',
          requiredSelect: 'Required, please select',
          requiredInput: 'Required, please input',
          optionalInput: 'Optional, please input'
        },
        status: {
          waiting: 'Waiting',
          processing: 'Processing',
          completed: 'Completed',
          failed: 'Failed'
        },
        validate: {
          required: 'Cannot be empty',
          maxLength30: 'Cannot exceed 30 characters',
          maxLength64: 'Cannot exceed 64 characters',
          maxLength18: 'Cannot exceed 18 characters',
          maxLength11: 'Cannot exceed 11 characters',
          maxLength12: 'Cannot exceed 12 characters',
          maxLength512: 'Cannot exceed 512 characters'
        },
        edit: {
          title: 'Edit Item Release'
        },
        delete: {
          confirmDelete: 'Confirm to delete item release?'
        },
        viewItems: {
          title: 'Release Items',
          itemName: 'Item Name',
          amount: 'Amount'
        }
      }
    },
    zh: {
      itemReleaseManage: {
        search: {
          title: '查询条件',
          more: '更多',
          hide: '隐藏'
        },
        list: {
          title: '物品放行'
        },
        form: {
          releaseType: '放行类型',
          applyCompany: '申请单位',
          applyPerson: '申请人',
          idCard: '身份证',
          phone: '手机号',
          passTime: '通行时间',
          releaseItems: '放行物品',
          itemAmount: '物品数量',
          status: '状态',
          carNumber: '车牌号',
          remark: '备注'
        },
        table: {
          orderNo: '单号',
          releaseType: '放行类型',
          applyCompany: '申请单位',
          applyPerson: '申请人',
          idCard: '身份证',
          phone: '手机号',
          passTime: '通行时间',
          items: '物品',
          status: '状态',
          carNumber: '车牌号'
        },
        button: {
          applyRelease: '申请放行',
          viewItems: '查看物品'
        },
        placeholder: {
          selectReleaseType: '请选择放行类型',
          selectApplyCompany: '请选择申请单位',
          selectApplyPerson: '请选择申请人',
          selectIdCard: '请输入身份证',
          selectPhone: '请输入手机号',
          selectStatus: '请选择状态',
          requiredSelect: '必填,请选择',
          requiredInput: '必填,请输入',
          optionalInput: '选填,请输入'
        },
        status: {
          waiting: '待审核',
          processing: '审核中',
          completed: '审核完成',
          failed: '审核失败'
        },
        validate: {
          required: '不能为空',
          maxLength30: '不能超过30个字符',
          maxLength64: '不能超过64个字符',
          maxLength18: '不能超过18个字符',
          maxLength11: '不能超过11个字符',
          maxLength12: '不能超过12个字符',
          maxLength512: '不能超过512个字符'
        },
        edit: {
          title: '修改物品放行'
        },
        delete: {
          confirmDelete: '确定删除物品放行?'
        },
        viewItems: {
          title: '放行物品',
          itemName: '物品名称',
          amount: '数量'
        }
      }
    }
  }