Blame view

src/views/owner/deleteOwnerRoomLang.js 2.76 KB
84aec3bc   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
  export const messages = {
    en: {
      viewOwnerInfo: {
        title: 'Owner Information',
        ownerId: 'Owner ID',
        name: 'Name',
        sex: 'Gender',
        age: 'Age',
        idCard: 'ID Card',
        link: 'Contact',
        userName: 'Created By',
        remark: 'Remark',
        chooseOwner: 'Select Owner',
        loadError: 'Failed to load owner information'
      },
      searchOwner: {
        title: 'Select Owner',
        ownerId: 'Owner ID',
        name: 'Name',
        personType: 'Person Type',
        personRole: 'Person Role',
        idCard: 'ID Card',
        link: 'Contact',
        roomPlaceholder: 'Enter room number (building-unit-room)',
        ownerPlaceholder: 'Enter owner name',
        loadError: 'Failed to load owner list'
      },
      showOwnerRoom: {
        info: 'Room Information',
        propertyFee: 'Property Fee',
        exitRoom: 'I want to exit the room',
        shopNum: 'Shop Number',
        roomNum: 'Room Number',
        floor: 'Floor',
        shopId: 'Shop ID',
        roomId: 'Room ID',
        builtUpArea: 'Built-up Area',
        squareMeters: 'Square Meters',
        apartmentLayout: 'Apartment Layout',
        roomCount: 'Number of Rooms',
        layer: 'layer'
      },
      ownerExitRoom: {
        confirmOperation: 'Please confirm your operation',
        confirmExit: 'Confirm to exit the room?',
        confirmExitTip: 'After exiting, it can be sold again',
        cancel: 'Cancel',
        confirmExitBtn: 'Confirm Exit'
      }
    },
    zh: {
      viewOwnerInfo: {
        title: '业主信息',
        ownerId: '业主ID',
        name: '名称',
        sex: '性别',
        age: '年龄',
        idCard: '身份证',
        link: '联系方式',
        userName: '创建员工',
        remark: '备注',
        chooseOwner: '选择业主',
        loadError: '加载业主信息失败'
      },
      searchOwner: {
        title: '选择业主',
        ownerId: '业主编号',
        name: '名称',
        personType: '人员类型',
        personRole: '人员角色',
        idCard: '证件号',
        link: '联系方式',
        roomPlaceholder: '输入房屋编号(楼栋-单元-房屋)',
        ownerPlaceholder: '输入业主名称',
        loadError: '加载业主列表失败'
      },
      showOwnerRoom: {
        info: '房屋信息',
        propertyFee: '物业费',
        exitRoom: '我要退房',
        shopNum: '商铺编号',
        roomNum: '房屋编号',
        floor: '楼层',
        shopId: '商铺ID',
        roomId: '房屋ID',
        builtUpArea: '建筑面积',
        squareMeters: '平方米',
        apartmentLayout: '户型',
        roomCount: '房间数',
        layer: '层'
      },
      ownerExitRoom: {
        confirmOperation: '请确认您的操作',
        confirmExit: '确认是否退房?',
        confirmExitTip: '退房后可以再次售卖',
        cancel: '点错了',
        confirmExitBtn: '确认退出'
      }
    }
  }