custom-data.js
3.09 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/**
* tips:
* tag:{
* tag-1 top-left top:-20 left:-20
* tag-2 top-right top:-20 left:+20
* tag-2 bottom-left top:+20 left:-20
* tag-4 bottom-right top:+20 left:+20
* }
*/
let mapFix = {
"top-left": {
fixLeft: 20 - 208,
fixTop: 20 - 334,
},
"top-right": {
fixLeft: 20,
fixTop: 20 - 334,
},
"bottom-left": {
fixLeft: 20 - 208,
fixTop: 20,
},
"bottom-right": {
fixLeft: 20,
fixTop: 20,
},
}
let productMap = {
// 场景1
"P000000000000000000000000000008": {
name: "丸美纯色之恋光透精华液30ml",
tag: 2,
sence: 1,
point: {
left: 210,
top: 400,
},
tips: {
type: "top-left",
point: mapFix["top-left"],
}
},
"P000000000000000000000000000010": {
name: "丸美巧克力青春丝滑毛孔隐形精华露35ml",
tag: 5,
sence: 1,
point: {
left: 460,
top: 120,
},
tips: {
type: "bottom-right",
point: mapFix["bottom-right"],
}
},
"P000000000000000000000000000009": {
name: "丸美雪绒花纯净保湿深润霜50g",
tag: 10,
sence: 1,
point: {
left: 450,
top: 520,
},
tips: {
type: "top-left",
point: mapFix["top-left"],
}
},
// 场景2
"P000000000000000000000000000007": {
name: "丸美巧克力青春丝滑洁面啫喱120g",
tag: 4,
sence: 2,
point: {
left: 300,
top: 300,
},
tips: {
type: "top-left",
point: mapFix["top-left"],
}
},
"P000000000000000000000000000004": {
name: "丸美巧克力青春丝滑水190ml",
tag: 6,
sence: 2,
point: {
left: 500,
top: 300,
},
tips: {
type: "bottom-right",
point: mapFix["bottom-right"],
}
},
// 场景3
"P000000000000000000000000000001": {
name: "丸美弹力蛋白眼精华素10g+10g",
tag: 3,
sence: 3,
point: {
left: 210,
top: 300,
},
tips: {
type: "top-left",
point: mapFix["top-left"],
}
},
"P000000000000000000000000000002": {
name: "丸美白色之恋纯白淡黑眼霜20g",
tag: 1,
sence: 3,
point: {
left: 380,
top: 280,
},
tips: {
type: "top-right",
point: mapFix["top-right"],
}
},
"P000000000000000000000000000003": {
name: "丸美巧克力青春丝滑眼乳霜25g",
tag: 7,
sence: 3,
point: {
left: 540,
top: 380,
},
tips: {
type: "bottom-left",
point: mapFix["bottom-left"],
}
},
// 场景4
"P000000000000000000000000000006": {
name: "丸美雪绒花纯净保湿咕嘟咕嘟菁华露80ml",
tag: 8,
sence: 4,
point: {
left: 300,
top: 300,
},
tips: {
type: "top-left",
point: mapFix["top-left"],
}
},
"P000000000000000000000000000005": {
name: "丸美雪绒花纯净保湿洁面乳120g",
tag: 9,
sence: 4,
point: {
left: 500,
top: 300,
},
tips: {
type: "bottom-right",
point: mapFix["bottom-right"],
}
},
}
module.exports = {
productMap: productMap
}