Blame view

src/views/scm/integralGiftDetailManageLang.js 1.18 KB
f52d2b06   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
  export const messages = {
    en: {
      integralGiftDetailManage: {
        search: {
          title: 'Search Conditions',
          detailId: 'Record ID',
          userNameLike: 'User Name',
          tel: 'Phone Number'
        },
        list: {
          title: 'Gift Records'
        },
        table: {
          detailId: 'Record ID',
          acctName: 'Account Name',
          configName: 'Standard Name',
          ruleName: 'Rule Name',
          quantity: 'Points Quantity',
          userName: 'User Name',
          tel: 'Phone Number',
          createTime: 'Gift Time'
        },
        fetchError: 'Failed to fetch gift records'
      }
    },
    zh: {
      integralGiftDetailManage: {
        search: {
          title: '查询条件',
          detailId: '记录编号',
          userNameLike: '用户名称',
          tel: '手机号'
        },
        list: {
          title: '赠送记录'
        },
        table: {
          detailId: '记录编号',
          acctName: '账户名称',
          configName: '标准名称',
          ruleName: '规则名称',
          quantity: '积分数量',
          userName: '用户名称',
          tel: '手机号',
          createTime: '赠送时间'
        },
        fetchError: '获取赠送记录失败'
      }
    }
  }