Blame view

src/views/room/roomStructureLang.js 465 Bytes
f92fd6ac   wuxw   开发我的小区下的功能
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  export const messages = {
    en: {
      roomStructure: {
        noOwner: 'None',
        owe: 'Debt',
        yuan: 'Yuan',
        searchPlaceholder: 'Please enter room number like 1-1-1',
        building: 'Building',
        unit: 'Unit'
      }
    },
    zh: {
      roomStructure: {
        noOwner: '无',
        owe: '欠费',
        yuan: '元',
        searchPlaceholder: '请输入房屋编号 楼栋-单元-房屋 如1-1-1',
        building: '栋',
        unit: '单元'
      }
    }
  }