Blame view

src/views/mall/userIntegralLang.js 1.25 KB
1705091d   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
57
58
59
60
  export const messages = {
    en: {
      userIntegral: {
        search: {
          title: 'Search Conditions',
          integralName: 'Account Name',
          integralNamePlaceholder: 'Please enter account name'
        },
        list: {
          title: 'User Points'
        },
        table: {
          id: 'ID',
          name: 'Account Name',
          type: 'Object Type',
          userId: 'User ID',
          phone: 'Phone',
          amount: 'Points'
        },
        type: {
          personal: 'Personal',
          merchant: 'Merchant'
        },
        fetchError: 'Failed to fetch points data'
      },
      common: {
        search: 'Search',
        manage: 'Manage'
      }
    },
    zh: {
      userIntegral: {
        search: {
          title: '查询条件',
          integralName: '账户名称',
          integralNamePlaceholder: '请输入账户名称'
        },
        list: {
          title: '用户积分'
        },
        table: {
          id: '编号',
          name: '账户名称',
          type: '对象类型',
          userId: '用户编号',
          phone: '手机号',
          amount: '积分数'
        },
        type: {
          personal: '个人',
          merchant: '商户'
        },
        fetchError: '获取积分数据失败'
      },
      common: {
        search: '查询',
        manage: '管理'
      }
    }
  }