Blame view

src/views/machine/accessControlInoutLang.js 1.93 KB
d68983e7   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
  export const messages = {
    en: {
      accessControlInout: {
        search: {
          title: 'Search Conditions',
          machine: 'Please select access control',
          name: 'Please enter user name',
          tel: 'Please enter phone number',
          state: 'Please select open status',
          startTime: 'Please enter start time',
          endTime: 'Please enter end time'
        },
        table: {
          title: 'Access Records',
          face: 'Face',
          id: 'ID',
          machineName: 'Device Name',
          machineCode: 'Device Code',
          userName: 'User Name',
          openType: 'Open Type',
          tel: 'Phone',
          idCard: 'ID Card',
          similar: 'Similarity',
          state: 'Status',
          createTime: 'Open Time'
        },
        openType: {
          all: 'All',
          face: 'Face',
          key: 'Key',
          qrcode: 'QR Code',
          password: 'Password'
        },
        state: {
          success: 'Success',
          fail: 'Failed'
        }
      }
    },
    zh:{
      accessControlInout: {
        search: {
          title: '查询条件',
          machine: '请选择门禁',
          name: '请填写用户名称',
          tel: '请填写手机号',
          state: '请选择开门状态',
          startTime: '请输入开始时间',
          endTime: '请输入结束时间'
        },
        table: {
          title: '进出记录',
          face: '人脸',
          id: '编号',
          machineName: '设备名称',
          machineCode: '设备编码',
          userName: '用户名称',
          openType: '开门方式',
          tel: '手机号',
          idCard: '用户身份证',
          similar: '相似度',
          state: '开门状态',
          createTime: '开门时间'
        },
        openType: {
          all: '全部',
          face: '人脸开门',
          key: '钥匙开门',
          qrcode: '二维码开门',
          password: '密码开门'
        },
        state: {
          success: '开门成功',
          fail: '开门失败'
        }
      }
    }
  }