Blame view

src/views/fee/payFeeConfigDiscountManageLang.js 4.68 KB
f0032091   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
  export const messages = {
    en: {
      payFeeConfigDiscountManage: {
        title: 'Fee Discount',
        discountId: 'Discount ID',
        feeName: 'Fee Item',
        discountName: 'Discount Name',
        rule: 'Rule',
        discountType: 'Discount Type',
        discount: 'Discount',
        penalty: 'Penalty',
        paymentPeriod: 'Payment Period',
        discountEndTime: 'Discount End Time',
        operation: 'Operation',
        paymentPeriodTip: 'Payment Period: This constrains the payment time, which is the time when the cashier operates the payment.',
        discountEndTimeTip: 'Discount End Time: This indicates the maximum payment time.',
        currentYearTip1: 'If the current year fee cannot enjoy the discount, select "No Arrears Rule" in the discount settings and set the arrears duration to 0.',
        currentYearTip2: 'This way, all overdue fees will not enjoy the discount, and the current year fee is considered overdue so it will not enjoy the discount.',
        fetchError: 'Failed to fetch discount data'
      },
      addPayFeeConfigDiscount: {
        addTitle: 'Add Discount',
        discountType: 'Discount Type',
        requiredPlaceholder: 'Required',
        selectDiscountType: 'Please select discount type',
        discount: 'Discount',
        penalty: 'Penalty',
        discountName: 'Discount Name',
        selectDiscountName: 'Please select discount name',
        paymentPeriod: 'Payment Period',
        startTimePlaceholder: 'Required, payment start time',
        endTimePlaceholder: 'Required, payment end time',
        paymentPeriodTip: 'Payment can only enjoy this discount during this period',
        discountEndTime: 'Discount End Time',
        discountEndTimePlaceholder: 'Optional, discount end time',
        discountEndTimeTip: 'Maximum payment time, e.g., for 2024 fee discount, fill in 2025-01-01',
        discountTypeRequired: 'Discount type is required',
        discountNameRequired: 'Discount name is required',
        startTimeRequired: 'Payment start time is required',
        endTimeRequired: 'Payment end time is required',
        fetchDiscountsError: 'Failed to fetch discounts',
        saveSuccess: 'Discount added successfully',
        saveError: 'Failed to add discount'
      },
      deletePayFeeConfigDiscount: {
        title: 'Confirm Operation',
        confirmText: 'Are you sure to delete this fee discount?',
        cancel: 'Cancel',
        deleteSuccess: 'Discount deleted successfully',
        deleteError: 'Failed to delete discount'
      },
    },
    zh: {
      payFeeConfigDiscountManage: {
        title: '费用折扣',
        discountId: '费用折扣ID',
        feeName: '费用项名称',
        discountName: '折扣名称',
        rule: '规则',
        discountType: '折扣类型',
        discount: '优惠',
        penalty: '违约',
        paymentPeriod: '缴费时间段',
        discountEndTime: '折扣终止时间',
        operation: '操作',
        paymentPeriodTip: '缴费时间段:这个约束缴费的时间,也就是前台收银员操作缴费的时间',
        discountEndTimeTip: '折扣终止时间:这个表示最大缴费到什么时候',
        currentYearTip1: '如果本年度费用不能享受优惠 那么在折扣设置中规则选择打折无欠费规则,并且欠费时长为0',
        currentYearTip2: '这样所有欠费的费用则不享受优惠,本年度的费用属于欠费所以不享受优惠',
        fetchError: '获取折扣数据失败'
      },
      addPayFeeConfigDiscount: {
        addTitle: '添加折扣',
        discountType: '折扣类型',
        requiredPlaceholder: '必填',
        selectDiscountType: '请选择折扣类型',
        discount: '优惠',
        penalty: '违约',
        discountName: '折扣名称',
        selectDiscountName: '请选择折扣名称',
        paymentPeriod: '缴费时间段',
        startTimePlaceholder: '必填,请填写缴费起始时间',
        endTimePlaceholder: '必填,请填写缴费结束时间',
        paymentPeriodTip: '这段时间内缴费才能享受该优惠',
        discountEndTime: '折扣终止时间',
        discountEndTimePlaceholder: '可选,填写折扣终止时间',
        discountEndTimeTip: '最大缴费到什么时候,比如想2024年费用优惠,那么就填写2025-01-01',
        discountTypeRequired: '折扣类型不能为空',
        discountNameRequired: '折扣名称不能为空',
        startTimeRequired: '有效期起始时间不能为空',
        endTimeRequired: '有效期终止时间不能为空',
        fetchDiscountsError: '获取折扣列表失败',
        saveSuccess: '添加成功',
        saveError: '添加失败'
      },
      deletePayFeeConfigDiscount: {
        title: '确认操作',
        confirmText: '确定删除费用折扣吗?',
        cancel: '点错了',
        deleteSuccess: '删除成功',
        deleteError: '删除失败'
      }
    }
  }