Blame view

src/views/fee/feeReceiptLang.js 1.9 KB
f99ceb4f   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
  export const messages = {
    en: {
      feeReceipt: {
        search: {
          title: 'Search Conditions',
          receiptId: 'Please enter receipt ID',
          roomId: 'Please enter room/carport info, format: building-unit-room, e.g. 1-1-1',
          objType: 'Please select fee type',
          all: 'All',
          houseFee: 'House Fee',
          parkingFee: 'Parking Fee',
          startTime: 'Please select start time',
          endTime: 'Please select end time'
        },
        list: {
          title: 'Receipt Information'
        },
        table: {
          receiptId: 'Receipt ID',
          receiptCode: 'Receipt Code',
          objType: 'Fee Type',
          feeName: 'Fee Item',
          roomName: 'Room',
          payObjName: 'Owner',
          carNum: 'Carport',
          amount: 'Total Amount(¥)',
          createTime: 'Payment Time'
        },
        button: {
          reprint: 'Reprint Receipt',
          reprintSmall: 'Reprint Small Receipt'
        },
        fetchError: 'Failed to fetch receipt data'
      }
    },
    zh: {
      feeReceipt: {
        search: {
          title: '查询条件',
          receiptId: '请输入收据ID',
          roomId: '请输入房屋或车位信息,格式为楼栋-单元-房屋,如1-1-1',
          objType: '请选择收费类型',
          all: '全部',
          houseFee: '房屋费',
          parkingFee: '车位费',
          startTime: '请选择开始时间',
          endTime: '请选择结束时间'
        },
        list: {
          title: '收据信息'
        },
        table: {
          receiptId: '收据ID',
          receiptCode: '收据编号',
          objType: '费用类型',
          feeName: '费用项',
          roomName: '房屋',
          payObjName: '业主',
          carNum: '车位',
          amount: '总金额(单位:元)',
          createTime: '缴费时间'
        },
        button: {
          reprint: '补打收据',
          reprintSmall: '补打小票'
        },
        fetchError: '获取收据数据失败'
      }
    }
  }