Blame view

src/views/iot/aAccessControlLang.js 1.61 KB
0d6fa19e   wuxw   admin加入物联网相关功能
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
  export const messages = {
    en: {
      aAccessControl: {
        search: {
          title: 'Search Conditions',
          machineCode: 'Please enter device code',
          machineName: 'Please enter device name',
          locationName: 'Please enter location name'
        },
        list: {
          title: 'Access Control Information'
        },
        table: {
          communityName: 'Community Name',
          machineCode: 'Device Code',
          machineName: 'Device Name',
          machineIp: 'IP',
          machineMac: 'Mac',
          promptSwitch: 'Prompt Switch',
          direction: 'Direction',
          implBean: 'Manufacturer',
          locationName: 'Location',
          stateName: 'Online Status',
          heartbeatTime: 'Heartbeat Time'
        },
        direction: {
          in: 'In',
          out: 'Out'
        },
        fetchError: 'Failed to get access control list'
      }
    },
    zh: {
      aAccessControl: {
        search: {
          title: '查询条件',
          machineCode: '请输入设备编码',
          machineName: '请输入设备名称',
          locationName: '请输入位置名称'
        },
        list: {
          title: '门禁信息'
        },
        table: {
          communityName: '小区名称',
          machineCode: '门禁编码',
          machineName: '门禁名称',
          machineIp: 'IP',
          machineMac: 'Mac',
          promptSwitch: '开门提示',
          direction: '方向',
          implBean: '厂家',
          locationName: '位置',
          stateName: '在线',
          heartbeatTime: '心跳时间'
        },
        direction: {
          in: '进',
          out: '出'
        },
        fetchError: '获取门禁列表失败'
      }
    }
  }