Blame view

src/views/market/marketLogLang.js 2.36 KB
2803cb18   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
  export const messages = {
    en: {
      marketLog: {
        search: {
          title: 'Search Conditions',
          communityName: 'Community Name',
          sendWay: 'Marketing Method',
          businessType: 'Business Type',
          personNameLike: 'Marketer Name',
          startTime: 'Start Time',
          endTime: 'End Time'
        },
        list: {
          title: 'Marketing Records'
        },
        table: {
          logId: 'ID',
          ruleName: 'Marketing Rule',
          communityName: 'Community Name',
          personName: 'Marketer',
          personTel: 'Phone',
          openId: 'OpenId',
          sendWayName: 'Marketing Method',
          businessTypeName: 'Business Type',
          createTime: 'Send Time',
          remark: 'Remark',
          viewContent: 'View Content'
        },
        sendWay: {
          sms: 'SMS',
          wechat: 'WeChat Template Message',
          other: 'Other'
        },
        businessType: {
          accessControl: 'Access Control',
          vehicleGate: 'Vehicle Gate',
          mobilePayment: 'Mobile Payment',
          repairOrder: 'Repair Order'
        },
        viewContent: {
          title: 'Send Content',
          sendContent: 'Send Content'
        },
        fetchError: 'Failed to fetch marketing logs'
      }
    },
    zh: {
      marketLog: {
        search: {
          title: '查询条件',
          communityName: '小区名称',
          sendWay: '营销方式',
          businessType: '业务类型',
          personNameLike: '营销人',
          startTime: '开始时间',
          endTime: '结束时间'
        },
        list: {
          title: '营销记录'
        },
        table: {
          logId: '编号',
          ruleName: '营销规则',
          communityName: '小区名称',
          personName: '营销人',
          personTel: '手机号',
          openId: 'OpenId',
          sendWayName: '营销方式',
          businessTypeName: '业务类型',
          createTime: '发送时间',
          remark: '说明',
          viewContent: '发送内容'
        },
        sendWay: {
          sms: '短信',
          wechat: '微信模板消息',
          other: '其他'
        },
        businessType: {
          accessControl: '门禁',
          vehicleGate: '车辆道闸',
          mobilePayment: '手机支付完成',
          repairOrder: '报修单提交'
        },
        viewContent: {
          title: '发送内容',
          sendContent: '发送内容'
        },
        fetchError: '获取营销记录失败'
      }
    }
  }