Blame view

src/views/fee/shareReadingFeeLang.js 1022 Bytes
a0f584aa   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
  export const messages = {
    en: {
      shareReadingFee: {
        search: {
          title: 'Search Conditions',
          roomName: 'Please enter room number',
          ownerName: 'Please enter owner name'
        },
        list: {
          title: 'Shared Reading Fees'
        },
        table: {
          roomName: 'Room',
          ownerName: 'Owner',
          feeName: 'Fee Name',
          degrees: 'Shared Degrees',
          amount: 'Shared Amount',
          remark: 'Remark'
        },
        fetchError: 'Failed to fetch shared reading fees'
      }
    },
    zh: {
      shareReadingFee: {
        search: {
          title: '查询条件',
          roomName: '请输入房屋编号',
          ownerName: '请输入业主姓名'
        },
        list: {
          title: '公摊费用'
        },
        table: {
          roomName: '房屋',
          ownerName: '业主',
          feeName: '费用名称',
          degrees: '公摊度数',
          amount: '公摊金额',
          remark: '说明'
        },
        fetchError: '获取公摊费用失败'
      }
    }
  }