Blame view

src/views/scm/reserveOrderLang.js 2.42 KB
9d4e862a   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
  export const messages = {
    en: {
      reserveOrder: {
        diningOrder: 'Dining Order',
        serviceOrder: 'Service Order',
        searchCondition: 'Search Condition',
        selectAppointmentTime: 'Select Appointment Time',
        selectAppointmentPerson: 'Select Appointment Person',
        selectAppointmentPhone: 'Select Appointment Phone',
        selectStatus: 'Select Status',
        allStatus: 'All Status',
        successStatus: 'Success',
        failStatus: 'Failed',
        waitAuditStatus: 'Wait Audit',
        waitPayStatus: 'Wait Pay',
        inputName: 'Input Name',
        orderId: 'Order ID',
        goodsName: 'Goods Name',
        appointmentPerson: 'Appointment Person',
        appointmentPhone: 'Appointment Phone',
        appointmentDate: 'Appointment Date',
        appointmentTime: 'Appointment Time',
        hour: 'hour',
        unit: 'unit',
        receivableAmount: 'Receivable Amount',
        receivedAmount: 'Received Amount',
        payWay: 'Pay Way',
        status: 'Status',
        createTime: 'Create Time',
        remark: 'Remark',
        cancelAppointment: 'Cancel Appointment',
        confirmCancel: 'Confirm to cancel this appointment?',
        cancelSuccess: 'Cancel success',
        cancelError: 'Cancel failed',
        fetchError: 'Fetch data failed'
      }
    },
    zh: {
      reserveOrder: {
        diningOrder: '就餐订单',
        serviceOrder: '服务订单',
        searchCondition: '查询条件',
        selectAppointmentTime: '请选择预约时间',
        selectAppointmentPerson: '请选择预约人',
        selectAppointmentPhone: '请选择预约电话',
        selectStatus: '请选择状态',
        allStatus: '全部状态',
        successStatus: '预约成功',
        failStatus: '预约失败',
        waitAuditStatus: '待审核',
        waitPayStatus: '待支付',
        inputName: '请输入名称',
        orderId: '订单编号',
        goodsName: '名称',
        appointmentPerson: '预约人',
        appointmentPhone: '预约电话',
        appointmentDate: '预约日期',
        appointmentTime: '预约时间',
        hour: '时',
        unit: '个',
        receivableAmount: '应收金额',
        receivedAmount: '实收金额',
        payWay: '支付方式',
        status: '状态',
        createTime: '预约时间',
        remark: '备注',
        cancelAppointment: '取消预约',
        confirmCancel: '确定要取消此预约吗?',
        cancelSuccess: '取消成功',
        cancelError: '取消失败',
        fetchError: '获取数据失败'
      }
    }
  }