Blame view

src/views/staff/systemUserDetailLang.js 3.01 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
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
  export const messages = {
    en: {
      systemUserDetail: {
        title: 'User Information',
        userId: 'ID',
        userName: 'Name',
        idCard: 'ID Card',
        tel: 'Phone',
        sex: 'Gender',
        address: 'Address',
        userAttr: 'User Attributes',
        relatedStaff: 'Related Staff',
        relatedOwner: 'Related Owner'
      },
      userDetailAttr: {
        specCd: 'Spec Code',
        specName: 'Spec Name',
        value: 'Value'
      },
      userDetailStaff: {
        name: 'Staff Name',
        tel: 'Staff Phone',
        storeName: 'Property Company'
      },
      ownerDetailAppUser: {
        communityName: 'Community Name',
        appUserName: 'Related Owner',
        idCard: 'ID Card',
        link: 'Phone',
        state: 'Status',
        createTime: 'Create Time',
        appType: 'App Type',
        openId: 'Open ID',
        ownerDetail: 'Owner Detail'
      },
      audit: {
        title: 'Audit Information',
        state: 'Audit Status',
        selectState: 'Please select audit status',
        agree: 'Agree',
        reject: 'Reject',
        remark: 'Reason',
        remarkPlaceholder: 'Required, please fill in the reason',
        stateRequired: 'Audit status is required',
        remarkRequired: 'Reason is required'
      },
      deleteAppUserBindingOwner: {
        title: 'Please confirm your operation',
        confirm: 'Are you sure to unbind the owner?'
      },
      resetStaffPwd: {
        title: 'Please confirm your operation',
        confirm: 'Are you sure to reset the password?',
        success: 'Reset password successfully, the password is {pwd}, please change it in time'
      }
    },
    zh: {
      systemUserDetail: {
        title: '用户信息',
        userId: '编号',
        userName: '名称',
        idCard: '身份证',
        tel: '手机',
        sex: '性别',
        address: '住址',
        userAttr: '用户属性',
        relatedStaff: '关联员工',
        relatedOwner: '关联业主'
      },
      userDetailAttr: {
        specCd: '规格编号',
        specName: '规格名称',
        value: '属性值'
      },
      userDetailStaff: {
        name: '员工名称',
        tel: '员工电话',
        storeName: '物业公司'
      },
      ownerDetailAppUser: {
        communityName: '小区名称',
        appUserName: '关联业主',
        idCard: '身份证',
        link: '手机号',
        state: '状态',
        createTime: '申请时间',
        appType: '手机端类型',
        openId: 'Open ID',
        ownerDetail: '业主详情'
      },
      audit: {
        title: '审核信息',
        state: '审核状态',
        selectState: '请审核',
        agree: '同意',
        reject: '拒绝',
        remark: '原因',
        remarkPlaceholder: '必填,请填写原因',
        stateRequired: '审核状态不能为空',
        remarkRequired: '原因内容不能为空'
      },
      deleteAppUserBindingOwner: {
        title: '请确认您的操作',
        confirm: '确定解绑业主吗?'
      },
      resetStaffPwd: {
        title: '请确认您的操作',
        confirm: '确认是否重置密码?',
        success: '修改密码成功,密码为{pwd}请及时修改密码'
      }
    }
  }