31330681
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
export const messages = {
en: {
marketRule: {
title: 'Marketing Rule Management',
name: 'Name',
description: 'Description',
marketingMethod: 'Marketing Method',
communityAuthorization: 'Community Authorization',
targetObject: 'Target Object',
add: 'Add',
edit: 'Edit',
delete: 'Delete',
save: 'Save',
cancel: 'Cancel',
confirmDelete: 'Confirm Delete',
deleteConfirmMessage: 'Are you sure to delete this marketing rule?',
marketingType: 'Marketing Type',
remark: 'Remark',
operation: 'Operation',
communityName: 'Community Name',
communityId: 'Community ID',
objectName: 'Object Name',
associateMarketingMethod: 'Associate Marketing Method',
associateCommunity: 'Associate Community',
associateObject: 'Associate Object',
text: 'Text',
image: 'Image',
goods: 'Goods',
required: 'Required',
selectMarketingType: 'Please select marketing type',
selectMarketingText: 'Please select marketing text',
selectMarketingImage: 'Please select marketing image',
selectMarketingGoods: 'Please select marketing goods',
selectCommunity: 'Please select community',
selectObject: 'Please select object',
customer: 'Customer',
merchant: 'Merchant',
staff: 'Staff'
}
},
zh: {
marketRule: {
title: '营销规则管理',
name: '名称',
description: '描述',
marketingMethod: '营销方式',
communityAuthorization: '小区授权',
targetObject: '作用对象',
add: '添加',
edit: '修改',
delete: '删除',
save: '保存',
cancel: '取消',
confirmDelete: '确认删除',
deleteConfirmMessage: '确定删除营销规则?',
marketingType: '营销类型',
remark: '备注',
operation: '操作',
communityName: '小区名称',
communityId: '小区编号',
objectName: '对象名称',
associateMarketingMethod: '关联营销方式',
associateCommunity: '关联小区',
associateObject: '关联对象',
text: '文本',
image: '图片',
goods: '商品',
required: '必填',
selectMarketingType: '请选择营销类型',
selectMarketingText: '请选择营销文本',
selectMarketingImage: '请选择营销图片',
selectMarketingGoods: '请选择营销商品',
selectCommunity: '请选择小区',
selectObject: '请选择对象',
customer: '客户',
merchant: '商户',
staff: '员工'
}
}
}
|