baiqiu-cms-decoration-dg 0.0.18 → 0.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/README.md +24 -0
  2. package/babel.config.js +5 -0
  3. package/package.json +49 -7
  4. package/public/favicon.ico +0 -0
  5. package/public/index.html +17 -0
  6. package/src/App.vue +594 -0
  7. package/src/api/com-service.js +26 -0
  8. package/src/assets/iconfont/demo.css +539 -0
  9. package/src/assets/iconfont/iconfont.css +158 -0
  10. package/src/assets/iconfont/iconfont.eot +0 -0
  11. package/src/assets/iconfont/iconfont.json +254 -0
  12. package/src/assets/iconfont/iconfont.svg +89 -0
  13. package/src/assets/iconfont/iconfont.ttf +0 -0
  14. package/src/assets/iconfont/iconfont.woff +0 -0
  15. package/src/assets/iconfont/iconfont.woff2 +0 -0
  16. package/src/assets/img/pc-cms-v2/creation.png +0 -0
  17. package/src/assets/img/pc-cms-v2/icon.png +0 -0
  18. package/src/assets/img/pc-cms-v2/mobileNav.png +0 -0
  19. package/src/assets/img/pc-cms-v2/next1.png +0 -0
  20. package/src/assets/img/pc-cms-v2/next2.png +0 -0
  21. package/src/assets/img/pc-cms-v2/prev1.png +0 -0
  22. package/src/assets/img/pc-cms-v2/prev2.png +0 -0
  23. package/src/assets/img/pc-cms-v2/text.png +0 -0
  24. package/src/components/cms/animate.scss +19 -0
  25. package/src/components/cms/buttonItem/buttonItem.js +135 -0
  26. package/src/components/cms/buttonItem/buttonItem.scss +95 -0
  27. package/src/components/cms/buttonItem/buttonItem.vue +47 -0
  28. package/src/components/cms/buttonItem/index.js +2 -0
  29. package/src/components/cms/cms.js +105 -0
  30. package/src/components/cms/cms.scss +46 -0
  31. package/src/components/cms/cms.vue +51 -0
  32. package/src/components/cms/customLayout/customLayout.js +46 -0
  33. package/src/components/cms/customLayout/customLayout.scss +8 -0
  34. package/src/components/cms/customLayout/customLayout.vue +15 -0
  35. package/src/components/cms/customLayout/index.js +2 -0
  36. package/src/components/cms/hotspot/hotspot.js +200 -0
  37. package/src/components/cms/hotspot/hotspot.scss +20 -0
  38. package/src/components/cms/hotspot/hotspot.vue +35 -0
  39. package/src/components/cms/hotspot/index.js +2 -0
  40. package/src/components/cms/imgNav/imgNav.js +176 -0
  41. package/src/components/cms/imgNav/imgNav.scss +113 -0
  42. package/src/components/cms/imgNav/imgNav.vue +123 -0
  43. package/src/components/cms/imgNav/index.js +2 -0
  44. package/src/components/cms/index.js +2 -0
  45. package/src/components/cms/mixin.js +239 -0
  46. package/src/components/cms/multipleLayout/index.js +2 -0
  47. package/src/components/cms/multipleLayout/multipleLayout.js +54 -0
  48. package/src/components/cms/multipleLayout/multipleLayout.scss +21 -0
  49. package/src/components/cms/multipleLayout/multipleLayout.vue +25 -0
  50. package/src/components/cms/productItem/index.js +2 -0
  51. package/src/components/cms/productItem/productItem.js +290 -0
  52. package/src/components/cms/productItem/productItem.scss +180 -0
  53. package/src/components/cms/productItem/productItem.vue +117 -0
  54. package/src/components/cms/singleLayout/index.js +2 -0
  55. package/src/components/cms/singleLayout/singleLayout.js +69 -0
  56. package/src/components/cms/singleLayout/singleLayout.scss +21 -0
  57. package/src/components/cms/singleLayout/singleLayout.vue +39 -0
  58. package/src/components/cms/slideLayout/index.js +2 -0
  59. package/src/components/cms/slideLayout/slideLayout.js +248 -0
  60. package/src/components/cms/slideLayout/slideLayout.scss +18 -0
  61. package/src/components/cms/slideLayout/slideLayout.vue +44 -0
  62. package/src/components/cms/swiperItem/index.js +2 -0
  63. package/src/components/cms/swiperItem/swiperItem.js +228 -0
  64. package/src/components/cms/swiperItem/swiperItem.scss +204 -0
  65. package/src/components/cms/swiperItem/swiperItem.vue +123 -0
  66. package/src/components/cms/tabLayout/index.js +2 -0
  67. package/src/components/cms/tabLayout/navItem/index.js +2 -0
  68. package/src/components/cms/tabLayout/navItem/navItem.js +47 -0
  69. package/src/components/cms/tabLayout/navItem/navItem.scss +23 -0
  70. package/src/components/cms/tabLayout/navItem/navItem.vue +13 -0
  71. package/src/components/cms/tabLayout/tabLayout.js +158 -0
  72. package/src/components/cms/tabLayout/tabLayout.scss +26 -0
  73. package/src/components/cms/tabLayout/tabLayout.vue +43 -0
  74. package/src/components/cms/textItem/index.js +2 -0
  75. package/src/components/cms/textItem/textItem.js +65 -0
  76. package/src/components/cms/textItem/textItem.scss +19 -0
  77. package/src/components/cms/textItem/textItem.vue +26 -0
  78. package/src/components/cms/utils.js +101 -0
  79. package/src/components/cms/videoItem/index.js +2 -0
  80. package/src/components/cms/videoItem/videoItem.js +96 -0
  81. package/src/components/cms/videoItem/videoItem.scss +27 -0
  82. package/src/components/cms/videoItem/videoItem.vue +56 -0
  83. package/src/components/cms/videoPlayer/index.js +2 -0
  84. package/src/components/cms/videoPlayer/videoPlayer.js +68 -0
  85. package/src/components/cms/videoPlayer/videoPlayer.scss +37 -0
  86. package/src/components/cms/videoPlayer/videoPlayer.vue +34 -0
  87. package/src/index.js +19 -0
  88. package/src/index.scss +221 -0
  89. package/src/main.js +8 -0
  90. package/src/utils/common.js +23 -0
  91. package/src/utils/http-client.js +101 -0
  92. package/src/utils/utils.js +63 -0
  93. /package/{baiqiu-cms-decoration-dg.common.js → lib/baiqiu-cms-decoration-dg.common.js} +0 -0
  94. /package/{baiqiu-cms-decoration-dg.common.js.map → lib/baiqiu-cms-decoration-dg.common.js.map} +0 -0
  95. /package/{baiqiu-cms-decoration-dg.css → lib/baiqiu-cms-decoration-dg.css} +0 -0
  96. /package/{baiqiu-cms-decoration-dg.umd.js → lib/baiqiu-cms-decoration-dg.umd.js} +0 -0
  97. /package/{baiqiu-cms-decoration-dg.umd.js.map → lib/baiqiu-cms-decoration-dg.umd.js.map} +0 -0
  98. /package/{baiqiu-cms-decoration-dg.umd.min.js → lib/baiqiu-cms-decoration-dg.umd.min.js} +0 -0
  99. /package/{baiqiu-cms-decoration-dg.umd.min.js.map → lib/baiqiu-cms-decoration-dg.umd.min.js.map} +0 -0
  100. /package/{demo.html → lib/demo.html} +0 -0
  101. /package/{fonts → lib/fonts}/iconfont.529b3ed0.ttf +0 -0
  102. /package/{fonts → lib/fonts}/iconfont.580c918e.eot +0 -0
  103. /package/{fonts → lib/fonts}/iconfont.ea5b1aa2.woff +0 -0
  104. /package/{img → lib/img}/iconfont.654cc65b.svg +0 -0
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # cms
2
+
3
+ ## Project setup
4
+ ```
5
+ npm install
6
+ ```
7
+
8
+ ### Compiles and hot-reloads for development
9
+ ```
10
+ npm run serve
11
+ ```
12
+
13
+ ### Compiles and minifies for production
14
+ ```
15
+ npm run build
16
+ ```
17
+
18
+ ### Lints and fixes files
19
+ ```
20
+ npm run lint
21
+ ```
22
+
23
+ ### Customize configuration
24
+ See [Configuration Reference](https://cli.vuejs.org/config/).
@@ -0,0 +1,5 @@
1
+ module.exports = {
2
+ presets: [
3
+ '@vue/cli-plugin-babel/preset'
4
+ ]
5
+ }
package/package.json CHANGED
@@ -1,12 +1,54 @@
1
1
  {
2
2
  "name": "baiqiu-cms-decoration-dg",
3
- "version": "0.0.18",
4
- "description": "",
5
- "main": "baiqiu-cms-decoration-dg.common.js",
3
+ "version": "0.0.19",
4
+ "private": false,
5
+ "main":"./lib/baiqiu-cms-decoration-dg.umd.min.js",
6
6
  "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
7
+ "serve": "vue-cli-service serve",
8
+ "build": "vue-cli-service build --target lib ./src/index.js --name baiqiu-cms-decoration-dg --dest lib",
9
+ "lint": "vue-cli-service lint",
10
+ "republish": "npm run build & yalc publish"
8
11
  },
9
- "keywords": [],
10
- "author": "",
11
- "license": "ISC"
12
+ "dependencies": {
13
+ "animate.css": "^4.1.1",
14
+ "axios": "^0.21.1",
15
+ "core-js": "^3.6.5",
16
+ "swiper": "^5.4.5",
17
+ "video.js": "^8.0.4",
18
+ "vue": "^2.6.11",
19
+ "vue-style-loader": "^4.1.3"
20
+ },
21
+ "devDependencies": {
22
+ "@vue/cli-plugin-babel": "~4.5.14",
23
+ "@vue/cli-plugin-eslint": "~4.5.14",
24
+ "@vue/cli-service": "~4.5.14",
25
+ "babel-eslint": "^10.1.0",
26
+ "eslint": "^6.7.2",
27
+ "eslint-plugin-vue": "^6.2.2",
28
+ "node-sass": "^4.14.1",
29
+ "sass-loader": "^7.3.1",
30
+ "vue-loader": "^15.9.3",
31
+ "vue-template-compiler": "^2.6.11",
32
+ "webpack": "^4.3.0",
33
+ "webpack-cli": "^3.3.11"
34
+ },
35
+ "eslintConfig": {
36
+ "root": true,
37
+ "env": {
38
+ "node": true
39
+ },
40
+ "extends": [
41
+ "plugin:vue/essential",
42
+ "eslint:recommended"
43
+ ],
44
+ "parserOptions": {
45
+ "parser": "babel-eslint"
46
+ },
47
+ "rules": {}
48
+ },
49
+ "browserslist": [
50
+ "> 1%",
51
+ "last 2 versions",
52
+ "not dead"
53
+ ]
12
54
  }
Binary file
@@ -0,0 +1,17 @@
1
+ <!DOCTYPE html>
2
+ <html lang="">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta name="viewport" content="width=device-width,initial-scale=1.0">
7
+ <link rel="icon" href="<%= BASE_URL %>favicon.ico">
8
+ <title><%= htmlWebpackPlugin.options.title %></title>
9
+ </head>
10
+ <body>
11
+ <noscript>
12
+ <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
13
+ </noscript>
14
+ <div id="app"></div>
15
+ <!-- built files will be auto injected -->
16
+ </body>
17
+ </html>
package/src/App.vue ADDED
@@ -0,0 +1,594 @@
1
+ <template>
2
+ <div id="app">
3
+ <cms
4
+ ref="cmsRef"
5
+ :cmsList="cmsList"
6
+ :canDrag="false"
7
+ :canDragInc="false"
8
+ :mode="mode"
9
+ :ratio="ratio"
10
+ :fontRatio="fontRatio"
11
+ :envUrl="envUrl"
12
+ v-bind="$attrs"
13
+ v-on="$listeners"
14
+ @jumpLink="jumpLink"></cms>
15
+ </div>
16
+ </template>
17
+
18
+ <script>
19
+ import cms from "./components/cms/";
20
+ export default {
21
+ name: "app",
22
+ components: {
23
+ cms,
24
+ },
25
+ data() {
26
+ return {
27
+ cmsList: [
28
+ {
29
+ recordId: 14786,
30
+ originalId: 4228,
31
+ terminalId: 186,
32
+ pageCode: "1000",
33
+ versionAdapterType: 2,
34
+ decorationToolsVersion: "V2",
35
+ componentCode: "1",
36
+ componentVersion: "",
37
+ componentSortNum: 1,
38
+ attributeJson: {
39
+ uniqueId: "",
40
+ uniqueName: "整行排列3",
41
+ component: "singleLayout",
42
+ layoutStyle: {
43
+ widthStyle: {
44
+ type: 1,
45
+ width: 100,
46
+ },
47
+ height: "400",
48
+ bgStyle: {
49
+ type: 1,
50
+ backgroundColor: "",
51
+ picList: [],
52
+ },
53
+ },
54
+ componentList: [
55
+ {
56
+ componentName: "图片",
57
+ component: "imgNav",
58
+ type: 2,
59
+ displayType: 1,
60
+ indicatorType: 1,
61
+ oneLineCount: 1,
62
+ attributeJson: {
63
+ uniqueId: "",
64
+ uniqueName: "基础图片0",
65
+ styleType: 1,
66
+ baseStyle: {
67
+ w: 750,
68
+ h: 417.8272980501393,
69
+ l: "0",
70
+ t: 0,
71
+ isLocked: true,
72
+ isCopy: false,
73
+ },
74
+ paddingSpacing: 0,
75
+ itemSpacing: 0,
76
+ animationInObj: {
77
+ type: "",
78
+ direction: "slideInUp",
79
+ delay: 0,
80
+ duration: 1,
81
+ sort: "",
82
+ },
83
+ animationHoverObj: {
84
+ type: 1,
85
+ borderStyle: {
86
+ type: 1,
87
+ borderColor: "#202832",
88
+ borderTop: "",
89
+ borderRight: "",
90
+ borderBottom: "",
91
+ borderLeft: "",
92
+ },
93
+ hoverImgList: [],
94
+ },
95
+ list: [
96
+ {
97
+ uniqueId: "",
98
+ uniqueName: "图片1",
99
+ picList: [
100
+ {
101
+ recordId: 7838,
102
+ classificationId: 0,
103
+ resourceStorageType: 3,
104
+ resourceExtensionType: 1,
105
+ resourceExtensionName: ".jpg",
106
+ resourceName: "10.jpg",
107
+ resourceActualName:
108
+ "7c19bc3e-1685-4b21-b7c1-e3965537c44a.jpg",
109
+ resourcePath:
110
+ "https://mpimg.ibaiqiu.cn/7c19bc3e-1685-4b21-b7c1-e3965537c44a.jpg",
111
+ resourceCoverId: null,
112
+ resourceCoverPath: "",
113
+ summary: "",
114
+ size: 1098294,
115
+ width: 1077,
116
+ height: 600,
117
+ duration: null,
118
+ attributeJson: "",
119
+ md5Hashcode: "db2ec544613c0dd65e7872dfa5e70301",
120
+ wxAppId: "",
121
+ wxMediaId: "",
122
+ qnHashcode: "Fk1P34qxO7A5vvrPGTmaPKXcds4M",
123
+ resourceSource: "MANAGEMENT_SYSTEM",
124
+ shopCode: "develop",
125
+ tenantCode: "buying",
126
+ delFlg: 0,
127
+ createTime: "2023-06-12 17:03:41",
128
+ createUser: "",
129
+ updateTime: "2023-06-12 17:03:41",
130
+ updateUser: "",
131
+ },
132
+ ],
133
+ popList: [],
134
+ sort: 1690877757803,
135
+ pic: "https://mpimg.ibaiqiu.cn/7c19bc3e-1685-4b21-b7c1-e3965537c44a.jpg",
136
+ height: 600,
137
+ width: 1077,
138
+ realWidth: 750,
139
+ realHeight: 417.8272980501393,
140
+ left: 0,
141
+ top: 0,
142
+ isReport: true,
143
+ },
144
+ ],
145
+ sort: 1690877756435,
146
+ },
147
+ sort: 1690877756435,
148
+ },
149
+ ],
150
+ sort: 1690877685978,
151
+ },
152
+ languageCode: "zh-CN",
153
+ shopCode: "develop",
154
+ delFlg: 0,
155
+ updateTime: "2023-08-02 10:15:20",
156
+ updateId: "",
157
+ createTime: "2023-08-02 10:15:20",
158
+ createId: "",
159
+ layoutType: 1,
160
+ sort: 1690877685978,
161
+ originalIdStr: "4228_1690877685978",
162
+ },
163
+ {
164
+ recordId: 14787,
165
+ originalId: 4230,
166
+ terminalId: 186,
167
+ pageCode: "1000",
168
+ versionAdapterType: 2,
169
+ decorationToolsVersion: "V2",
170
+ componentCode: "1",
171
+ componentVersion: "",
172
+ componentSortNum: 3,
173
+ attributeJson: {
174
+ uniqueId: "",
175
+ uniqueName: "整行排列4",
176
+ component: "singleLayout",
177
+ layoutStyle: {
178
+ widthStyle: {
179
+ type: 1,
180
+ width: 100,
181
+ },
182
+ height: 1080,
183
+ bgStyle: {
184
+ type: 1,
185
+ backgroundColor: "",
186
+ picList: [],
187
+ },
188
+ },
189
+ componentList: [
190
+ {
191
+ componentName: "DG换一换",
192
+ type: 106,
193
+ displayType: 1,
194
+ component: "latticeDG",
195
+ componentRight: "latticeDGConfig",
196
+ entranceAnimateType: ["", "fade", "scale", "slide"],
197
+ dataReportCode: 32,
198
+ attributeJson: {
199
+ uniqueId: "",
200
+ uniqueName: "基础DG换一换0",
201
+ baseStyle: {
202
+ w: 750,
203
+ h: 1040,
204
+ l: "0",
205
+ t: "0",
206
+ isLocked: true,
207
+ },
208
+ title: "ce ",
209
+ titleType: 2,
210
+ buttonImage:
211
+ "https://mpimg.ibaiqiu.cn/339ce7b9-641a-45ff-993a-9d41d7ad592c.jpeg",
212
+ buttonPicList: [
213
+ {
214
+ recordId: 7878,
215
+ classificationId: 0,
216
+ resourceStorageType: 3,
217
+ resourceExtensionType: 1,
218
+ resourceExtensionName: ".jpeg",
219
+ resourceName: "IM_LOGO黑色.jpeg",
220
+ resourceActualName:
221
+ "339ce7b9-641a-45ff-993a-9d41d7ad592c.jpeg",
222
+ resourcePath:
223
+ "https://mpimg.ibaiqiu.cn/339ce7b9-641a-45ff-993a-9d41d7ad592c.jpeg",
224
+ resourceCoverId: null,
225
+ resourceCoverPath: "",
226
+ summary: "",
227
+ size: 52571,
228
+ width: 477,
229
+ height: 104,
230
+ duration: null,
231
+ attributeJson: "",
232
+ md5Hashcode: "9562500c6d629043f9a95416c401e4cb",
233
+ wxAppId: "",
234
+ wxMediaId: "",
235
+ qnHashcode: "FodlQLs_Qv19pkkz7sHcRJOP-wzU",
236
+ resourceSource: "MANAGEMENT_SYSTEM",
237
+ shopCode: "develop",
238
+ tenantCode: "buying",
239
+ delFlg: 0,
240
+ createTime: "2023-07-05 11:43:07",
241
+ createUser: "",
242
+ updateTime: "2023-07-05 11:43:07",
243
+ updateUser: "",
244
+ },
245
+ ],
246
+ list: [
247
+ {
248
+ sort: 1690878776859,
249
+ uniqueName: "导航1",
250
+ title: "e",
251
+ imageType: 2,
252
+ matterList: [
253
+ {
254
+ sort: 1690878796413,
255
+ uniqueName: "素材组1",
256
+ picList: [],
257
+ productInfoList: [
258
+ {
259
+ code: "G8PV0TG7F2I",
260
+ codeType: "ITEM",
261
+ brand: "Dolce & Gabbana",
262
+ multilingualBrand: null,
263
+ name: "Long-sleeved T-shirt with logo tag",
264
+ multilingualName: null,
265
+ standardPrice: null,
266
+ salesPrice: null,
267
+ originSalesPrice: null,
268
+ sortNum: null,
269
+ description: "",
270
+ multilingualDescription: null,
271
+ putawayStatus: 1,
272
+ salesList: [],
273
+ putawayTimeStamp: "",
274
+ pulloffTimeStamp: "",
275
+ inStockStatus: "--",
276
+ inventory: null,
277
+ preSale: null,
278
+ isGift: 0,
279
+ shopCode: "develop",
280
+ tenantCode: "",
281
+ cmsColorVOList: [],
282
+ mainPicUrl:
283
+ "https://img.ibaiqiu.com/applet-upload/1669720618-322-G8PV0TG7F2I-BLACK-1.png",
284
+ itemStr: "",
285
+ displayStatusStr: "C端展示",
286
+ displayStatus: 0,
287
+ },
288
+ {
289
+ code: "CK1908AG085",
290
+ codeType: "ITEM",
291
+ brand: "Dolce & Gabbana",
292
+ multilingualBrand: null,
293
+ name: "Daymaster 拼接材质运动鞋",
294
+ multilingualName: null,
295
+ standardPrice: null,
296
+ salesPrice: null,
297
+ originSalesPrice: null,
298
+ sortNum: null,
299
+ description: "",
300
+ multilingualDescription: null,
301
+ putawayStatus: 1,
302
+ salesList: [],
303
+ putawayTimeStamp: "",
304
+ pulloffTimeStamp: "",
305
+ inStockStatus: "--",
306
+ inventory: null,
307
+ preSale: null,
308
+ isGift: 0,
309
+ shopCode: "develop",
310
+ tenantCode: "",
311
+ cmsColorVOList: [],
312
+ mainPicUrl:
313
+ "https://img.ibaiqiu.com/applet-upload/1669720592-322-CK1908AG085-WHITE-1.png",
314
+ itemStr: "",
315
+ displayStatusStr: "C端展示",
316
+ displayStatus: 0,
317
+ },
318
+ {
319
+ code: "GVRYATFUMQG",
320
+ codeType: "ITEM",
321
+ brand: "Dolce & Gabbana",
322
+ multilingualBrand: null,
323
+ name: "标牌尼龙工装裤",
324
+ multilingualName: null,
325
+ standardPrice: null,
326
+ salesPrice: null,
327
+ originSalesPrice: null,
328
+ sortNum: null,
329
+ description: "",
330
+ multilingualDescription: null,
331
+ putawayStatus: 1,
332
+ salesList: [],
333
+ putawayTimeStamp: "",
334
+ pulloffTimeStamp: "",
335
+ inStockStatus: "--",
336
+ inventory: null,
337
+ preSale: null,
338
+ isGift: 0,
339
+ shopCode: "develop",
340
+ tenantCode: "",
341
+ cmsColorVOList: [],
342
+ mainPicUrl:
343
+ "https://img.ibaiqiu.com/applet-upload/1669720610-322-GVRYATFUMQG-BLACK-1.png",
344
+ itemStr: "",
345
+ displayStatusStr: "C端展示",
346
+ displayStatus: 0,
347
+ },
348
+ {
349
+ code: "CQ0353A1016",
350
+ codeType: "ITEM",
351
+ brand: "Dolce & Gabbana",
352
+ multilingualBrand: null,
353
+ name: "DEVOTION 纳帕皮革夹趾凉鞋",
354
+ multilingualName: null,
355
+ standardPrice: null,
356
+ salesPrice: null,
357
+ originSalesPrice: null,
358
+ sortNum: null,
359
+ description: "",
360
+ multilingualDescription: null,
361
+ putawayStatus: 1,
362
+ salesList: [],
363
+ putawayTimeStamp: "",
364
+ pulloffTimeStamp: "",
365
+ inStockStatus: "--",
366
+ inventory: null,
367
+ preSale: null,
368
+ isGift: 0,
369
+ shopCode: "develop",
370
+ tenantCode: "",
371
+ cmsColorVOList: [],
372
+ mainPicUrl:
373
+ "https://img.ibaiqiu.com/applet-upload/1669720601-322-CQ0353A1016-SILVER-1.png",
374
+ itemStr: "",
375
+ displayStatusStr: "C端展示",
376
+ displayStatus: 0,
377
+ },
378
+ {
379
+ code: "CR1377A1037",
380
+ codeType: "ITEM",
381
+ brand: "Dolce & Gabbana",
382
+ multilingualBrand: null,
383
+ name: "3.5 鞋跟亮泽小牛皮穆勒鞋",
384
+ multilingualName: null,
385
+ standardPrice: null,
386
+ salesPrice: null,
387
+ originSalesPrice: null,
388
+ sortNum: null,
389
+ description: "",
390
+ multilingualDescription: null,
391
+ putawayStatus: 1,
392
+ salesList: [],
393
+ putawayTimeStamp: "",
394
+ pulloffTimeStamp: "",
395
+ inStockStatus: "--",
396
+ inventory: null,
397
+ preSale: null,
398
+ isGift: 0,
399
+ shopCode: "develop",
400
+ tenantCode: "",
401
+ cmsColorVOList: [],
402
+ mainPicUrl:
403
+ "https://img.ibaiqiu.com/applet-upload/1669720594-322-CR1377A1037-BRIGHTGREEN-1.png",
404
+ itemStr: "",
405
+ displayStatusStr: "C端展示",
406
+ displayStatus: 0,
407
+ },
408
+ {
409
+ code: "G036DTHUMQQ",
410
+ codeType: "ITEM",
411
+ brand: "Dolce & Gabbana",
412
+ multilingualBrand: null,
413
+ name: "Double-breasted wool pea coat with branded tag",
414
+ multilingualName: null,
415
+ standardPrice: null,
416
+ salesPrice: null,
417
+ originSalesPrice: null,
418
+ sortNum: null,
419
+ description: "",
420
+ multilingualDescription: null,
421
+ putawayStatus: 1,
422
+ salesList: [],
423
+ putawayTimeStamp: "",
424
+ pulloffTimeStamp: "",
425
+ inStockStatus: "--",
426
+ inventory: null,
427
+ preSale: null,
428
+ isGift: 0,
429
+ shopCode: "develop",
430
+ tenantCode: "",
431
+ cmsColorVOList: [],
432
+ mainPicUrl:
433
+ "https://img.ibaiqiu.com/applet-upload/1669720599-322-G036DTHUMQQ-BLACK-1.png",
434
+ itemStr: "",
435
+ displayStatusStr: "C端展示",
436
+ displayStatus: 0,
437
+ },
438
+ {
439
+ code: "CD1718AD455",
440
+ codeType: "ITEM",
441
+ brand: "Dolce & Gabbana",
442
+ multilingualBrand: null,
443
+ name: "徽标印花小牛皮高跟鞋",
444
+ multilingualName: null,
445
+ standardPrice: null,
446
+ salesPrice: null,
447
+ originSalesPrice: null,
448
+ sortNum: null,
449
+ description: "",
450
+ multilingualDescription: null,
451
+ putawayStatus: 1,
452
+ salesList: [],
453
+ putawayTimeStamp: "",
454
+ pulloffTimeStamp: "",
455
+ inStockStatus: "--",
456
+ inventory: null,
457
+ preSale: null,
458
+ isGift: 0,
459
+ shopCode: "develop",
460
+ tenantCode: "",
461
+ cmsColorVOList: [],
462
+ mainPicUrl:
463
+ "https://img.ibaiqiu.com/applet-upload/1669720597-322-CD1718AD455-LOGO2 NERO F.BCO OTT-1.png",
464
+ itemStr: "",
465
+ displayStatusStr: "C端展示",
466
+ displayStatus: 0,
467
+ },
468
+ {
469
+ code: "G8PT1TG7F2I",
470
+ codeType: "ITEM",
471
+ brand: "Dolce & Gabbana",
472
+ multilingualBrand: null,
473
+ name: "Cotton T-shirt with branded tag",
474
+ multilingualName: null,
475
+ standardPrice: null,
476
+ salesPrice: null,
477
+ originSalesPrice: null,
478
+ sortNum: null,
479
+ description: "",
480
+ multilingualDescription: null,
481
+ putawayStatus: 1,
482
+ salesList: [],
483
+ putawayTimeStamp: "",
484
+ pulloffTimeStamp: "",
485
+ inStockStatus: "--",
486
+ inventory: null,
487
+ preSale: null,
488
+ isGift: 0,
489
+ shopCode: "develop",
490
+ tenantCode: "",
491
+ cmsColorVOList: [],
492
+ mainPicUrl:
493
+ "https://img.ibaiqiu.com/applet-upload/1669720608-322-G8PT1TG7F2I-BLACK-1.png",
494
+ itemStr: "",
495
+ displayStatusStr: "C端展示",
496
+ displayStatus: 0,
497
+ },
498
+ {
499
+ code: "CG0505AQ130",
500
+ codeType: "ITEM",
501
+ brand: "Dolce & Gabbana",
502
+ multilingualBrand: null,
503
+ name: "DG Karol 鞋跟漆皮后系带鞋",
504
+ multilingualName: null,
505
+ standardPrice: null,
506
+ salesPrice: null,
507
+ originSalesPrice: null,
508
+ sortNum: null,
509
+ description: "",
510
+ multilingualDescription: null,
511
+ putawayStatus: 1,
512
+ salesList: [],
513
+ putawayTimeStamp: "",
514
+ pulloffTimeStamp: "",
515
+ inStockStatus: "--",
516
+ inventory: null,
517
+ preSale: null,
518
+ isGift: 0,
519
+ shopCode: "develop",
520
+ tenantCode: "",
521
+ cmsColorVOList: [],
522
+ mainPicUrl:
523
+ "https://img.ibaiqiu.com/applet-upload/1669720605-322-CG0505AQ130-BLACK/GOLD-1.png",
524
+ itemStr: "",
525
+ displayStatusStr: "C端展示",
526
+ displayStatus: 0,
527
+ },
528
+ ],
529
+ },
530
+ ],
531
+ },
532
+ ],
533
+ animationInObj: {
534
+ type: "",
535
+ direction: "slideInUp",
536
+ delay: 0,
537
+ duration: 1,
538
+ sort: "",
539
+ },
540
+ animationHoverObj: {},
541
+ sort: 1690878775397,
542
+ },
543
+ sort: 1690878775397,
544
+ },
545
+ ],
546
+ sort: 1690878770835,
547
+ },
548
+ languageCode: "zh-CN",
549
+ shopCode: "develop",
550
+ delFlg: 0,
551
+ updateTime: "2023-08-02 10:15:20",
552
+ updateId: "",
553
+ createTime: "2023-08-02 10:15:20",
554
+ createId: "",
555
+ layoutType: 1,
556
+ sort: 1690878770835,
557
+ originalIdStr: "4230_1690878770835",
558
+ }
559
+ ],
560
+ ratio: 1,
561
+ fontRatio: 1,
562
+ mode: "pc",
563
+ envUrl: "https://mpdev.ibaiqiu.com/",
564
+ };
565
+ },
566
+ mounted() {},
567
+ methods: {
568
+ onResize(e) {
569
+ this.ratio = e.width / (this.device == "pc" ? 1920 : 750);
570
+ },
571
+ jumpLink(e) {
572
+ console.log(e, "热区");
573
+ },
574
+ },
575
+ };
576
+ </script>
577
+
578
+ <style lang="scss">
579
+ body {
580
+ margin: 0;
581
+ }
582
+
583
+ #app {
584
+ font-family: "Avenir", Helvetica, Arial, sans-serif;
585
+ -webkit-font-smoothing: antialiased;
586
+ -moz-osx-font-smoothing: grayscale;
587
+ text-align: center;
588
+ color: #2c3e50;
589
+ }
590
+
591
+ div {
592
+ box-sizing: border-box;
593
+ }
594
+ </style>