Blame view

src/views/report/dataReportLang.js 3.45 KB
51f9221a   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
101
102
103
104
105
106
107
108
109
110
  export const messages = {
    en: {
      dataReport: {
        timeRange: 'Time Range',
        startDate: 'Start Date',
        endDate: 'End Date',
        to: 'to',
        selectCommunity: 'Select Community',
        today: 'Today',
        yesterday: 'Yesterday',
        last7Days: 'Last 7 Days',
        last30Days: 'Last 30 Days',
        feeStatistics: 'Fee Statistics',
        orderStatistics: 'Order Statistics',
        inoutStatistics: 'In/Out Statistics',
        otherStatistics: 'Other Statistics',
        building: 'Building',
        roomCount: 'Room Count',
        feeRoomCount: 'Fee Room Count',
        receivedFee: 'Received Fee',
        totalReceived: 'Total Received',
        export: 'Export',
        roomNumber: 'Room Number',
        ownerName: 'Owner Name',
        phoneNumber: 'Phone Number',
        search: 'Search',
        reset: 'Reset',
        room: 'Room',
        owner: 'Owner',
        oweFee: 'Owe Fee',
        totalOwe: 'Total Owe',
        historyOwe: 'History Owe',
        todayPaidCount: 'Today Paid Count',
        todayPaidAmount: 'Today Paid Amount',
        historyPaidCount: 'History Paid Count',
        historyPaidAmount: 'History Paid Amount',
        monthPaidCount: 'Month Paid Count',
        remainingCount: 'Remaining Count',
        paidRatio: 'Paid Ratio',
        monthPaidAmount: 'Month Paid Amount',
        monthRemaining: 'Month Remaining',
        collectionRate: 'Collection Rate',
        feeName: 'Fee Name',
        receivedPeriod: 'Received Period',
        cashier: 'Cashier',
        paymentTime: 'Payment Time',
        owePeriod: 'Owe Period',
        oweAmount: 'Owe Amount',
        receivedAmount: 'Received Amount',
        selectBuilding: 'Select Building',
        feeStartDate: 'Fee Start Date',
        feeEndDate: 'Fee End Date',
        noExportData: 'No data to export'
      }
    },
    zh: {
      dataReport: {
        timeRange: '统计时间',
        startDate: '开始日期',
        endDate: '结束日期',
        to: '至',
        selectCommunity: '请选择小区',
        today: '今日',
        yesterday: '昨日',
        last7Days: '近7日',
        last30Days: '近30日',
        feeStatistics: '费用类统计',
        orderStatistics: '工单类统计',
        inoutStatistics: '出入统计',
        otherStatistics: '其他统计',
        building: '楼栋',
        roomCount: '户数',
        feeRoomCount: '收费户数',
        receivedFee: '实收',
        totalReceived: '总实收',
        export: '导出',
        roomNumber: '房屋编号',
        ownerName: '业主名称',
        phoneNumber: '手机号',
        search: '查询',
        reset: '重置',
        room: '房屋',
        owner: '业主',
        oweFee: '欠费',
        totalOwe: '总欠费',
        historyOwe: '历史欠费',
        todayPaidCount: '本日已交户数',
        todayPaidAmount: '本日已交金额',
        historyPaidCount: '历史欠费清缴户',
        historyPaidAmount: '历史欠费清缴金额',
        monthPaidCount: '本月已收户数',
        remainingCount: '剩余户数',
        paidRatio: '已收户占比',
        monthPaidAmount: '当月已收金额',
        monthRemaining: '当月剩余未收',
        collectionRate: '收费率',
        feeName: '费用名称',
        receivedPeriod: '实收时间段',
        cashier: '收银员',
        paymentTime: '交费时间',
        owePeriod: '欠费时间段',
        oweAmount: '欠费金额',
        receivedAmount: '实收',
        selectBuilding: '请选择楼栋',
        feeStartDate: '费用开始时间',
        feeEndDate: '费用结束时间',
        noExportData: '没有可以导出的数据'
      }
    }
  }