Blame view

src/views/scm/supplierCouponLang.js 1.52 KB
e9908e30   wuxw   开发完成admin供应商功能
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
  export const messages =  {
    en: {
      supplierCoupon: {
        title: 'Supplier Coupon Management',
        searchConditions: 'Search Conditions',
        couponInfo: 'Coupon Information',
        name: 'Name',
        businessId: 'Business ID',
        supplier: 'Supplier',
        thirdPartyId: 'Third-party ID',
        price: 'Price',
        remark: 'Remark',
        operation: 'Operation',
        add: 'Add',
        edit: 'Edit',
        delete: 'Delete',
        confirm: 'Confirm',
        cancel: 'Cancel',
        deleteConfirm: 'Are you sure to delete this coupon?',
        deleteTitle: 'Confirm Operation',
        required: 'Required',
        addTitle: 'Add Coupon',
        editTitle: 'Edit Coupon',
        search: 'Search',
        noData: 'No data',
        supplierRequired: 'Please select a supplier first'
      }
    },
    zh: {
      supplierCoupon: {
        title: '供应商优惠券管理',
        searchConditions: '查询条件',
        couponInfo: '优惠券信息',
        name: '名称',
        businessId: '业务ID',
        supplier: '供应商',
        thirdPartyId: '三方ID',
        price: '售价',
        remark: '备注',
        operation: '操作',
        add: '添加',
        edit: '修改',
        delete: '删除',
        confirm: '确认',
        cancel: '取消',
        deleteConfirm: '确定删除优惠券?',
        deleteTitle: '请确认您的操作',
        required: '必填',
        addTitle: '添加优惠券',
        editTitle: '修改优惠券',
        search: '查询',
        noData: '暂无数据',
        supplierRequired: '请先选择供应商'
      }
    }
  }