Blame view

src/views/owner/adminAuthOwnerLang.js 1.93 KB
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
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
  export const messages = {
    en: {
      adminAuthOwner: {
        search: {
          title: 'Search Conditions',
          state: 'Please select status',
          appUserName: 'Please enter owner name',
          idCard: 'Please enter ID card',
          link: 'Please enter phone number'
        },
        list: {
          title: 'Owner Authentication'
        },
        table: {
          communityName: 'Community Name',
          appUserName: 'Owner',
          link: 'Phone',
          roomName: 'Room',
          ownerTypeCdName: 'Person Type',
          idCard: 'ID Card',
          stateName: 'Status',
          remark: 'Audit Remark',
          createTime: 'Apply Time',
          appTypeName: 'App Type'
        },
        status: {
          all: 'All',
          pending: 'Pending',
          success: 'Success',
          failed: 'Failed'
        },
        community: {
          all: 'All Communities',
          fetchError: 'Failed to load communities'
        },
        fetchError: 'Failed to load owner authentication data'
      }
    },
    zh: {
      adminAuthOwner: {
        search: {
          title: '查询条件',
          state: '请选择状态',
          appUserName: '请输入关联业主名称',
          idCard: '请输入关联业主身份证',
          link: '请输入关联业主手机号'
        },
        list: {
          title: '业主认证'
        },
        table: {
          communityName: '小区名称',
          appUserName: '业主',
          link: '手机号',
          roomName: '房屋',
          ownerTypeCdName: '人员类型',
          idCard: '身份证',
          stateName: '状态',
          remark: '审核说明',
          createTime: '申请时间',
          appTypeName: '手机端类型'
        },
        status: {
          all: '全部',
          pending: '待审核',
          success: '审核成功',
          failed: '审核失败'
        },
        community: {
          all: '全部小区',
          fetchError: '加载小区列表失败'
        },
        fetchError: '加载业主认证数据失败'
      }
    }
  }