zartui 3.1.17 → 3.1.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.
- package/README.md +23 -0
- package/es/calendar/Calendar.mjs +1 -2
- package/es/date-time-picker/DateTimePicker.mjs +15 -0
- package/es/dialog/index.css +1 -1
- package/es/drawer-select/DrawerSelect.d.ts +17 -1
- package/es/drawer-select/DrawerSelect.mjs +9 -4
- package/es/drawer-select/index.d.ts +11 -0
- package/es/dropdown-item/DropdownItem.d.ts +26 -0
- package/es/dropdown-item/DropdownItem.mjs +11 -9
- package/es/dropdown-item/index.d.ts +18 -0
- package/es/dropdown-menu/DropdownMenu.mjs +4 -1
- package/es/dropdown-menu/index.css +1 -1
- package/es/empty/Empty.mjs +5 -1
- package/es/empty/Images.d.ts +14 -11
- package/es/empty/Images.mjs +89 -89
- package/es/empty/types.d.ts +1 -0
- package/es/hierarchy-select/HierarchySelect.d.ts +13 -0
- package/es/hierarchy-select/HierarchySelect.mjs +11 -1
- package/es/hierarchy-select/index.css +1 -1
- package/es/hierarchy-select/index.d.ts +9 -0
- package/es/index.d.ts +1 -1
- package/es/index.mjs +1 -1
- package/es/media-picker/MediaPicker.d.ts +4 -0
- package/es/media-picker/MediaPicker.mjs +31 -15
- package/es/media-picker/index.d.ts +4 -0
- package/es/media-picker/index.mjs +3 -1
- package/es/media-picker/type.d.ts +12 -1
- package/es/media-picker/type.mjs +12 -0
- package/es/media-picker/util/wx-util.d.ts +4 -0
- package/es/media-picker/util/wx-util.mjs +67 -0
- package/es/popup/index.css +1 -1
- package/es/slider/Slider.mjs +15 -16
- package/es/slider/index.css +1 -1
- package/es/table/Table.d.ts +13 -0
- package/es/table/Table.mjs +28 -7
- package/es/table/index.css +1 -1
- package/es/table/index.d.ts +9 -0
- package/es/table/style/index.mjs +6 -0
- package/es/tabs/TabsTitle.mjs +1 -0
- package/es/tabs/index.css +1 -1
- package/es/text-ellipsis/TextEllipsis.d.ts +13 -0
- package/es/text-ellipsis/TextEllipsis.mjs +15 -4
- package/es/text-ellipsis/index.d.ts +9 -0
- package/es/text-ellipsis/style/index.mjs +7 -0
- package/es/toast/index.css +1 -1
- package/lib/calendar/Calendar.js +1 -2
- package/lib/date-time-picker/DateTimePicker.js +15 -0
- package/lib/dialog/index.css +1 -1
- package/lib/drawer-select/DrawerSelect.d.ts +17 -1
- package/lib/drawer-select/DrawerSelect.js +9 -4
- package/lib/drawer-select/index.d.ts +11 -0
- package/lib/dropdown-item/DropdownItem.d.ts +26 -0
- package/lib/dropdown-item/DropdownItem.js +10 -8
- package/lib/dropdown-item/index.d.ts +18 -0
- package/lib/dropdown-menu/DropdownMenu.js +4 -1
- package/lib/dropdown-menu/index.css +1 -1
- package/lib/empty/Empty.js +5 -1
- package/lib/empty/Images.d.ts +14 -11
- package/lib/empty/Images.js +89 -89
- package/lib/empty/types.d.ts +1 -0
- package/lib/hierarchy-select/HierarchySelect.d.ts +13 -0
- package/lib/hierarchy-select/HierarchySelect.js +11 -1
- package/lib/hierarchy-select/index.css +1 -1
- package/lib/hierarchy-select/index.d.ts +9 -0
- package/lib/index.css +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/media-picker/MediaPicker.d.ts +4 -0
- package/lib/media-picker/MediaPicker.js +30 -14
- package/lib/media-picker/index.d.ts +4 -0
- package/lib/media-picker/index.js +3 -1
- package/lib/media-picker/type.d.ts +12 -1
- package/lib/media-picker/type.js +16 -0
- package/lib/media-picker/util/wx-util.d.ts +4 -0
- package/lib/media-picker/util/wx-util.js +86 -0
- package/lib/popup/index.css +1 -1
- package/lib/slider/Slider.js +15 -16
- package/lib/slider/index.css +1 -1
- package/lib/table/Table.d.ts +13 -0
- package/lib/table/Table.js +37 -6
- package/lib/table/index.css +1 -1
- package/lib/table/index.d.ts +9 -0
- package/lib/table/style/index.js +6 -0
- package/lib/tabs/TabsTitle.js +1 -0
- package/lib/tabs/index.css +1 -1
- package/lib/text-ellipsis/TextEllipsis.d.ts +13 -0
- package/lib/text-ellipsis/TextEllipsis.js +13 -2
- package/lib/text-ellipsis/index.d.ts +9 -0
- package/lib/text-ellipsis/style/index.js +7 -0
- package/lib/toast/index.css +1 -1
- package/lib/web-types.json +1 -1
- package/lib/zartui.cjs.js +727 -572
- package/lib/zartui.es.js +727 -572
- package/lib/zartui.js +727 -572
- package/lib/zartui.min.js +1 -1
- package/package.json +5 -5
package/es/empty/Images.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { createVNode as _createVNode } from "vue";
|
|
2
|
-
const renderNotFound = (bem) => _createVNode("svg", {
|
|
2
|
+
const renderNotFound = (bem, getId, getUrlById) => _createVNode("svg", {
|
|
3
3
|
"xmlns": "http://www.w3.org/2000/svg",
|
|
4
4
|
"viewBox": "0 0 160 160",
|
|
5
5
|
"class": "design-iconfont"
|
|
@@ -8,7 +8,7 @@ const renderNotFound = (bem) => _createVNode("svg", {
|
|
|
8
8
|
"y1": "100%",
|
|
9
9
|
"x2": "50%",
|
|
10
10
|
"y2": "0%",
|
|
11
|
-
"id":
|
|
11
|
+
"id": getId(1)
|
|
12
12
|
}, [_createVNode("stop", {
|
|
13
13
|
"class": bem("svg-defs-stop-color-gradient"),
|
|
14
14
|
"stop-opacity": ".1",
|
|
@@ -22,7 +22,7 @@ const renderNotFound = (bem) => _createVNode("svg", {
|
|
|
22
22
|
"y1": "100%",
|
|
23
23
|
"x2": "50%",
|
|
24
24
|
"y2": "0%",
|
|
25
|
-
"id":
|
|
25
|
+
"id": getId(2)
|
|
26
26
|
}, [_createVNode("stop", {
|
|
27
27
|
"class": bem("svg-defs-stop-color"),
|
|
28
28
|
"stop-opacity": "0",
|
|
@@ -36,7 +36,7 @@ const renderNotFound = (bem) => _createVNode("svg", {
|
|
|
36
36
|
"y1": "100%",
|
|
37
37
|
"x2": "50%",
|
|
38
38
|
"y2": "0%",
|
|
39
|
-
"id":
|
|
39
|
+
"id": getId(3)
|
|
40
40
|
}, [_createVNode("stop", {
|
|
41
41
|
"class": bem("svg-defs-stop-color"),
|
|
42
42
|
"offset": "0%"
|
|
@@ -99,14 +99,14 @@ const renderNotFound = (bem) => _createVNode("svg", {
|
|
|
99
99
|
"d": "M80 0A80 80 0 1 0 80 160A80 80 0 1 0 80 0Z"
|
|
100
100
|
}, null), _createVNode("path", {
|
|
101
101
|
"d": "M120,68 C124.418278,68 128,71.581722 128,76 L128,124 C128,128.418278 124.418278,132 120,132 L88,132 C84.2724501,132 81.1403373,129.450631 80.2521271,126.000358 L99,126 C107.836556,126 115,118.836556 115,110 L114.999127,68 L120,68 Z",
|
|
102
|
-
"fill":
|
|
102
|
+
"fill": getUrlById(1)
|
|
103
103
|
}, null), _createVNode("path", {
|
|
104
104
|
"d": "M16,4 L56,4 C62.627417,4 68,9.372583 68,16 L68,80 C68,86.627417 62.627417,92 56,92 L16,92 C9.372583,92 4,86.627417 4,80 L4,16 C4,9.372583 9.372583,4 16,4 Z",
|
|
105
|
-
"fill":
|
|
105
|
+
"fill": getUrlById(2),
|
|
106
106
|
"transform": "translate(43 30)"
|
|
107
107
|
}, null), _createVNode("path", {
|
|
108
108
|
"d": "M56,0 C64.836556,0 72,7.163444 72,16 L72,80 C72,88.836556 64.836556,96 56,96 L16,96 C7.163444,96 0,88.836556 0,80 L0,16 C0,7.163444 7.163444,0 16,0 L56,0 Z M48,12 C48,14.209139 46.209139,16 44,16 L28,16 C25.790861,16 24,14.209139 24,12 L24,8 L16,8 C11.581722,8 8,11.581722 8,16 L8,80 C8,84.418278 11.581722,88 16,88 L56,88 C60.418278,88 64,84.418278 64,80 L64,16 C64,11.581722 60.418278,8 56,8 L48,8 L48,12 Z",
|
|
109
|
-
"fill":
|
|
109
|
+
"fill": getUrlById(3),
|
|
110
110
|
"transform": "translate(43 30)"
|
|
111
111
|
}, null), _createVNode("g", {
|
|
112
112
|
"transform": "translate(43 30)"
|
|
@@ -127,7 +127,7 @@ const renderNotFound = (bem) => _createVNode("svg", {
|
|
|
127
127
|
"fill": "#FFF",
|
|
128
128
|
"xlink:href": "#iwtsazmcp__qni97e1yqg"
|
|
129
129
|
}, null)])])]);
|
|
130
|
-
const renderServerError = (bem) => _createVNode("svg", {
|
|
130
|
+
const renderServerError = (bem, getId, getUrlById) => _createVNode("svg", {
|
|
131
131
|
"xmlns": "http://www.w3.org/2000/svg",
|
|
132
132
|
"viewBox": "0 0 160 160",
|
|
133
133
|
"class": "design-iconfont"
|
|
@@ -136,7 +136,7 @@ const renderServerError = (bem) => _createVNode("svg", {
|
|
|
136
136
|
"y1": "100%",
|
|
137
137
|
"x2": "50%",
|
|
138
138
|
"y2": "0%",
|
|
139
|
-
"id":
|
|
139
|
+
"id": getId(1)
|
|
140
140
|
}, [_createVNode("stop", {
|
|
141
141
|
"class": bem("svg-defs-stop-color-gradient"),
|
|
142
142
|
"stop-opacity": ".1",
|
|
@@ -150,7 +150,7 @@ const renderServerError = (bem) => _createVNode("svg", {
|
|
|
150
150
|
"y1": "100%",
|
|
151
151
|
"x2": "50%",
|
|
152
152
|
"y2": "0%",
|
|
153
|
-
"id":
|
|
153
|
+
"id": getId(2)
|
|
154
154
|
}, [_createVNode("stop", {
|
|
155
155
|
"class": bem("svg-defs-stop-color"),
|
|
156
156
|
"stop-opacity": "0",
|
|
@@ -164,7 +164,7 @@ const renderServerError = (bem) => _createVNode("svg", {
|
|
|
164
164
|
"y1": "100%",
|
|
165
165
|
"x2": "50%",
|
|
166
166
|
"y2": "0%",
|
|
167
|
-
"id":
|
|
167
|
+
"id": getId(3)
|
|
168
168
|
}, [_createVNode("stop", {
|
|
169
169
|
"class": bem("svg-defs-stop-color"),
|
|
170
170
|
"offset": "0%"
|
|
@@ -226,13 +226,13 @@ const renderServerError = (bem) => _createVNode("svg", {
|
|
|
226
226
|
"d": "M80 0A80 80 0 1 0 80 160A80 80 0 1 0 80 0Z"
|
|
227
227
|
}, null), _createVNode("path", {
|
|
228
228
|
"d": "M118,68 C122.418278,68 126,71.581722 126,76 L126,124 C126,128.418278 122.418278,132 118,132 L86,132 C82.2724501,132 79.1403373,129.450631 78.2521271,126.000358 L97,126 C105.836556,126 113,118.836556 113,110 L112.999127,68 L118,68 Z",
|
|
229
|
-
"fill":
|
|
229
|
+
"fill": getUrlById(1)
|
|
230
230
|
}, null), _createVNode("path", {
|
|
231
231
|
"d": "M57,34 L97,34 C103.627417,34 109,39.372583 109,46 L109,110 C109,116.627417 103.627417,122 97,122 L57,122 C50.372583,122 45,116.627417 45,110 L45,46 C45,39.372583 50.372583,34 57,34 Z",
|
|
232
|
-
"fill":
|
|
232
|
+
"fill": getUrlById(2)
|
|
233
233
|
}, null), _createVNode("path", {
|
|
234
234
|
"d": "M97,30 C105.836556,30 113,37.163444 113,46 L113,110 C113,118.836556 105.836556,126 97,126 L57,126 C48.163444,126 41,118.836556 41,110 L41,46 C41,37.163444 48.163444,30 57,30 L97,30 Z M89,42 C89,44.209139 87.209139,46 85,46 L69,46 C66.790861,46 65,44.209139 65,42 L65,38 L57,38 C52.581722,38 49,41.581722 49,46 L49,110 C49,114.418278 52.581722,118 57,118 L97,118 C101.418278,118 105,114.418278 105,110 L105,46 C105,41.581722 101.418278,38 97,38 L89,38 L89,42 Z",
|
|
235
|
-
"fill":
|
|
235
|
+
"fill": getUrlById(3)
|
|
236
236
|
}, null), _createVNode("g", {
|
|
237
237
|
"transform": "translate(53.42222 65.5)"
|
|
238
238
|
}, [_createVNode("use", {
|
|
@@ -252,7 +252,7 @@ const renderServerError = (bem) => _createVNode("svg", {
|
|
|
252
252
|
"fill": "#FFF",
|
|
253
253
|
"xlink:href": "#7kkq7j5p7__45z80jbylg"
|
|
254
254
|
}, null)])])]);
|
|
255
|
-
const renderAccessRestricted = (bem) => _createVNode("svg", {
|
|
255
|
+
const renderAccessRestricted = (bem, getId, getUrlById) => _createVNode("svg", {
|
|
256
256
|
"xmlns": "http://www.w3.org/2000/svg",
|
|
257
257
|
"viewBox": "0 0 160 160",
|
|
258
258
|
"class": "design-iconfont"
|
|
@@ -261,7 +261,7 @@ const renderAccessRestricted = (bem) => _createVNode("svg", {
|
|
|
261
261
|
"y1": "100%",
|
|
262
262
|
"x2": "50%",
|
|
263
263
|
"y2": "0%",
|
|
264
|
-
"id":
|
|
264
|
+
"id": getId(1)
|
|
265
265
|
}, [_createVNode("stop", {
|
|
266
266
|
"class": bem("svg-defs-stop-color"),
|
|
267
267
|
"stop-opacity": ".1",
|
|
@@ -275,7 +275,7 @@ const renderAccessRestricted = (bem) => _createVNode("svg", {
|
|
|
275
275
|
"y1": "100%",
|
|
276
276
|
"x2": "50%",
|
|
277
277
|
"y2": "0%",
|
|
278
|
-
"id":
|
|
278
|
+
"id": getId(2)
|
|
279
279
|
}, [_createVNode("stop", {
|
|
280
280
|
"class": bem("svg-defs-stop-color"),
|
|
281
281
|
"stop-opacity": "0",
|
|
@@ -289,7 +289,7 @@ const renderAccessRestricted = (bem) => _createVNode("svg", {
|
|
|
289
289
|
"y1": "100%",
|
|
290
290
|
"x2": "50%",
|
|
291
291
|
"y2": "0%",
|
|
292
|
-
"id":
|
|
292
|
+
"id": getId(3)
|
|
293
293
|
}, [_createVNode("stop", {
|
|
294
294
|
"class": bem("svg-defs-stop-color"),
|
|
295
295
|
"offset": "0%"
|
|
@@ -326,13 +326,13 @@ const renderAccessRestricted = (bem) => _createVNode("svg", {
|
|
|
326
326
|
"d": "M80 0A80 80 0 1 0 80 160A80 80 0 1 0 80 0Z"
|
|
327
327
|
}, null), _createVNode("path", {
|
|
328
328
|
"d": "M114,80 C118.418278,80 122,83.581722 122,88 L122,107 C122,118.59798 112.59798,128 101,128 L88,128 C84.1855747,128 80.9946648,125.330413 80.1937019,121.757672 C98.1007036,119.680283 112,104.463319 112,86 L112,80 L114,80 Z",
|
|
329
|
-
"fill":
|
|
329
|
+
"fill": getUrlById(1)
|
|
330
330
|
}, null), _createVNode("path", {
|
|
331
331
|
"d": "M56,44 L96,44 C102.627417,44 108,49.372583 108,56 L108,86 C108,103.673112 93.673112,118 76,118 L56,118 C49.372583,118 44,112.627417 44,106 L44,56 C44,49.372583 49.372583,44 56,44 Z",
|
|
332
|
-
"fill":
|
|
332
|
+
"fill": getUrlById(2)
|
|
333
333
|
}, null), _createVNode("path", {
|
|
334
334
|
"d": "M90,31 C92.209139,31 94,32.790861 94,35 L94,40 L96,40 C104.836556,40 112,47.163444 112,56 L112,86 C112,105.882251 95.882251,122 76,122 L56,122 C47.163444,122 40,114.836556 40,106 L40,56 C40,47.163444 47.163444,40 56,40 L58,40 L58,35 C58,32.790861 59.790861,31 62,31 C64.209139,31 66,32.790861 66,35 L66,40 L86,40 L86,35 C86,32.790861 87.790861,31 90,31 Z M96,48 L56,48 C51.581722,48 48,51.581722 48,56 L48,106 C48,110.418278 51.581722,114 56,114 L76,114 C91.463973,114 104,101.463973 104,86 L104,56 C104,51.581722 100.418278,48 96,48 Z",
|
|
335
|
-
"fill":
|
|
335
|
+
"fill": getUrlById(3)
|
|
336
336
|
}, null), _createVNode("g", null, [_createVNode("use", {
|
|
337
337
|
"class": bem("svg-defs-path-fill"),
|
|
338
338
|
"filter": "url(#osn32hg6k__96p18i5xad)",
|
|
@@ -341,7 +341,7 @@ const renderAccessRestricted = (bem) => _createVNode("svg", {
|
|
|
341
341
|
"fill": "#FFF",
|
|
342
342
|
"xlink:href": "#osn32hg6k__2vtr6xgyge"
|
|
343
343
|
}, null)])])]);
|
|
344
|
-
const renderDeveloping = (bem) => _createVNode("svg", {
|
|
344
|
+
const renderDeveloping = (bem, getId, getUrlById) => _createVNode("svg", {
|
|
345
345
|
"xmlns": "http://www.w3.org/2000/svg",
|
|
346
346
|
"viewBox": "0 0 160 160",
|
|
347
347
|
"class": "design-iconfont"
|
|
@@ -350,7 +350,7 @@ const renderDeveloping = (bem) => _createVNode("svg", {
|
|
|
350
350
|
"y1": "100%",
|
|
351
351
|
"x2": "50%",
|
|
352
352
|
"y2": "0%",
|
|
353
|
-
"id":
|
|
353
|
+
"id": getId(1)
|
|
354
354
|
}, [_createVNode("stop", {
|
|
355
355
|
"class": bem("svg-defs-stop-color"),
|
|
356
356
|
"stop-opacity": ".1",
|
|
@@ -364,7 +364,7 @@ const renderDeveloping = (bem) => _createVNode("svg", {
|
|
|
364
364
|
"y1": "100%",
|
|
365
365
|
"x2": "50%",
|
|
366
366
|
"y2": "0%",
|
|
367
|
-
"id":
|
|
367
|
+
"id": getId(2)
|
|
368
368
|
}, [_createVNode("stop", {
|
|
369
369
|
"class": bem("svg-defs-stop-color"),
|
|
370
370
|
"offset": "0%"
|
|
@@ -376,7 +376,7 @@ const renderDeveloping = (bem) => _createVNode("svg", {
|
|
|
376
376
|
"y1": "100%",
|
|
377
377
|
"x2": "50%",
|
|
378
378
|
"y2": "0%",
|
|
379
|
-
"id":
|
|
379
|
+
"id": getId(3)
|
|
380
380
|
}, [_createVNode("stop", {
|
|
381
381
|
"class": bem("svg-defs-stop-color"),
|
|
382
382
|
"stop-opacity": "0",
|
|
@@ -415,15 +415,15 @@ const renderDeveloping = (bem) => _createVNode("svg", {
|
|
|
415
415
|
"d": "M80 0A80 80 0 1 0 80 160A80 80 0 1 0 80 0Z"
|
|
416
416
|
}, null), _createVNode("path", {
|
|
417
417
|
"d": "M30.9499998,77 L57.0500002,77 C59.7838096,77 62,79.2161904 62,81.9499998 L62,82.0500002 C62,84.7838096 59.7838096,87 57.0500002,87 L30.9499998,87 C28.2161904,87 26,84.7838096 26,82.0500002 L26,81.9499998 C26,79.2161904 28.2161904,77 30.9499998,77 Z",
|
|
418
|
-
"fill":
|
|
418
|
+
"fill": getUrlById(1),
|
|
419
419
|
"transform": "translate(36 37)"
|
|
420
420
|
}, null), _createVNode("path", {
|
|
421
421
|
"d": "M79,1.42108547e-14 C83.8011292,1.42108547e-14 88,4.20251975 88,9 L88,54 C88,62.9808979 80.9869924,70 72,70 L16,70 C7.01300757,70 0,62.9808979 0,54 L0,9 C0,4.20251975 4.19887078,1.42108547e-14 9,1.42108547e-14 L79,1.42108547e-14 Z M79,18 L9,18 C8.62504067,18 8,18.62538 8,19 L8,54 C8,58.5604098 11.4377237,62 16,62 L72,62 C76.5622763,62 80,58.5604098 80,54 L80,19 C80,18.62538 79.3749593,18 79,18 Z",
|
|
422
|
-
"fill":
|
|
422
|
+
"fill": getUrlById(2),
|
|
423
423
|
"transform": "translate(36 37)"
|
|
424
424
|
}, null), _createVNode("path", {
|
|
425
425
|
"d": "M78.5842697,18 L9.41573034,18 C8.63384406,18 8,18.62538 8,19.3968254 L8,54.3174603 C8,58.5604098 11.4861423,62 15.7865169,62 L72.2134831,62 C76.5138577,62 80,58.5604098 80,54.3174603 L80,19.3968254 C80,18.62538 79.3661559,18 78.5842697,18 Z",
|
|
426
|
-
"fill":
|
|
426
|
+
"fill": getUrlById(3),
|
|
427
427
|
"transform": "translate(36 37)"
|
|
428
428
|
}, null), _createVNode("path", {
|
|
429
429
|
"d": "M11,12 C12.6568542,12 14,10.6568542 14,9 C14,7.34314575 12.6568542,6 11,6 C9.34314575,6 8,7.34314575 8,9 C8,10.6568542 9.34314575,12 11,12 Z M20,12 C21.6568542,12 23,10.6568542 23,9 C23,7.34314575 21.6568542,6 20,6 C18.3431458,6 17,7.34314575 17,9 C17,10.6568542 18.3431458,12 20,12 Z M29,12 C30.6568542,12 32,10.6568542 32,9 C32,7.34314575 30.6568542,6 29,6 C27.3431458,6 26,7.34314575 26,9 C26,10.6568542 27.3431458,12 29,12 Z",
|
|
@@ -439,7 +439,7 @@ const renderDeveloping = (bem) => _createVNode("svg", {
|
|
|
439
439
|
"fill": "#FFF",
|
|
440
440
|
"xlink:href": "#0rplvus3a__7t0ftckj4e"
|
|
441
441
|
}, null)])])]);
|
|
442
|
-
const renderNetworkError = (bem) => _createVNode("svg", {
|
|
442
|
+
const renderNetworkError = (bem, getId, getUrlById) => _createVNode("svg", {
|
|
443
443
|
"xmlns": "http://www.w3.org/2000/svg",
|
|
444
444
|
"viewBox": "0 0 160 160",
|
|
445
445
|
"class": "design-iconfont"
|
|
@@ -448,7 +448,7 @@ const renderNetworkError = (bem) => _createVNode("svg", {
|
|
|
448
448
|
"y1": "100%",
|
|
449
449
|
"x2": "50%",
|
|
450
450
|
"y2": "0%",
|
|
451
|
-
"id":
|
|
451
|
+
"id": getId(1)
|
|
452
452
|
}, [_createVNode("stop", {
|
|
453
453
|
"class": bem("svg-defs-stop-color-gradient"),
|
|
454
454
|
"stop-opacity": "0",
|
|
@@ -462,7 +462,7 @@ const renderNetworkError = (bem) => _createVNode("svg", {
|
|
|
462
462
|
"y1": "0%",
|
|
463
463
|
"x2": "50%",
|
|
464
464
|
"y2": "100%",
|
|
465
|
-
"id":
|
|
465
|
+
"id": getId(2)
|
|
466
466
|
}, [_createVNode("stop", {
|
|
467
467
|
"class": bem("svg-defs-stop-color-gradient"),
|
|
468
468
|
"offset": "0%"
|
|
@@ -503,9 +503,9 @@ const renderNetworkError = (bem) => _createVNode("svg", {
|
|
|
503
503
|
"opacity": ".24220203"
|
|
504
504
|
}, null), _createVNode("path", {
|
|
505
505
|
"d": "M56,44 L96,44 C102.627417,44 108,49.372583 108,56 L108,86 C108,103.673112 93.673112,118 76,118 L56,118 C49.372583,118 44,112.627417 44,106 L44,56 C44,49.372583 49.372583,44 56,44 Z",
|
|
506
|
-
"stroke":
|
|
506
|
+
"stroke": getUrlById(2),
|
|
507
507
|
"stroke-width": "8",
|
|
508
|
-
"fill":
|
|
508
|
+
"fill": getUrlById(1)
|
|
509
509
|
}, null), _createVNode("use", {
|
|
510
510
|
"class": bem("svg-defs-path-fill"),
|
|
511
511
|
"filter": "url(#xg345q5xi__ky1vat27oc)",
|
|
@@ -528,7 +528,7 @@ const renderNetworkError = (bem) => _createVNode("svg", {
|
|
|
528
528
|
"height": "16",
|
|
529
529
|
"rx": "4"
|
|
530
530
|
}, null)])]);
|
|
531
|
-
const renderEmptyResult = (bem) => _createVNode("svg", {
|
|
531
|
+
const renderEmptyResult = (bem, getId, getUrlById) => _createVNode("svg", {
|
|
532
532
|
"xmlns": "http://www.w3.org/2000/svg",
|
|
533
533
|
"viewBox": "0 0 160 160",
|
|
534
534
|
"class": "design-iconfont"
|
|
@@ -537,7 +537,7 @@ const renderEmptyResult = (bem) => _createVNode("svg", {
|
|
|
537
537
|
"y1": "100%",
|
|
538
538
|
"x2": "50%",
|
|
539
539
|
"y2": "0%",
|
|
540
|
-
"id":
|
|
540
|
+
"id": getId(1)
|
|
541
541
|
}, [_createVNode("stop", {
|
|
542
542
|
"class": bem("svg-defs-stop-color"),
|
|
543
543
|
"stop-opacity": ".1",
|
|
@@ -551,7 +551,7 @@ const renderEmptyResult = (bem) => _createVNode("svg", {
|
|
|
551
551
|
"y1": "100%",
|
|
552
552
|
"x2": "50%",
|
|
553
553
|
"y2": "0%",
|
|
554
|
-
"id":
|
|
554
|
+
"id": getId(2)
|
|
555
555
|
}, [_createVNode("stop", {
|
|
556
556
|
"class": bem("svg-defs-stop-color"),
|
|
557
557
|
"stop-opacity": "0",
|
|
@@ -565,7 +565,7 @@ const renderEmptyResult = (bem) => _createVNode("svg", {
|
|
|
565
565
|
"y1": "100%",
|
|
566
566
|
"x2": "50%",
|
|
567
567
|
"y2": "0%",
|
|
568
|
-
"id":
|
|
568
|
+
"id": getId(3)
|
|
569
569
|
}, [_createVNode("stop", {
|
|
570
570
|
"class": bem("svg-defs-stop-color"),
|
|
571
571
|
"offset": "0%"
|
|
@@ -602,13 +602,13 @@ const renderEmptyResult = (bem) => _createVNode("svg", {
|
|
|
602
602
|
"d": "M80 0A80 80 0 1 0 80 160A80 80 0 1 0 80 0Z"
|
|
603
603
|
}, null), _createVNode("path", {
|
|
604
604
|
"d": "M114,80 C118.418278,80 122,83.581722 122,88 L122,107 C122,118.59798 112.59798,128 101,128 L88,128 C84.1855747,128 80.9946648,125.330413 80.1937019,121.757672 C98.1007036,119.680283 112,104.463319 112,86 L112,80 L114,80 Z",
|
|
605
|
-
"fill":
|
|
605
|
+
"fill": getUrlById(1)
|
|
606
606
|
}, null), _createVNode("path", {
|
|
607
607
|
"d": "M56,44 L96,44 C102.627417,44 108,49.372583 108,56 L108,86 C108,103.673112 93.673112,118 76,118 L56,118 C49.372583,118 44,112.627417 44,106 L44,56 C44,49.372583 49.372583,44 56,44 Z",
|
|
608
|
-
"fill":
|
|
608
|
+
"fill": getUrlById(2)
|
|
609
609
|
}, null), _createVNode("path", {
|
|
610
610
|
"d": "M90,31 C92.209139,31 94,32.790861 94,35 L94,40 L96,40 C104.836556,40 112,47.163444 112,56 L112,86 C112,105.882251 95.882251,122 76,122 L56,122 C47.163444,122 40,114.836556 40,106 L40,56 C40,47.163444 47.163444,40 56,40 L58,40 L58,35 C58,32.790861 59.790861,31 62,31 C64.209139,31 66,32.790861 66,35 L66,40 L86,40 L86,35 C86,32.790861 87.790861,31 90,31 Z M96,48 L56,48 C51.581722,48 48,51.581722 48,56 L48,106 C48,110.418278 51.581722,114 56,114 L76,114 C91.463973,114 104,101.463973 104,86 L104,56 C104,51.581722 100.418278,48 96,48 Z",
|
|
611
|
-
"fill":
|
|
611
|
+
"fill": getUrlById(3)
|
|
612
612
|
}, null), _createVNode("g", null, [_createVNode("use", {
|
|
613
613
|
"class": bem("svg-defs-path-fill"),
|
|
614
614
|
"filter": "url(#cgogdnfso__7fi3sy00cd)",
|
|
@@ -617,7 +617,7 @@ const renderEmptyResult = (bem) => _createVNode("svg", {
|
|
|
617
617
|
"fill": "#FFF",
|
|
618
618
|
"xlink:href": "#cgogdnfso__sffqrzc91e"
|
|
619
619
|
}, null)])])]);
|
|
620
|
-
const renderFindNull = (bem) => _createVNode("svg", {
|
|
620
|
+
const renderFindNull = (bem, getId, getUrlById) => _createVNode("svg", {
|
|
621
621
|
"xmlns": "http://www.w3.org/2000/svg",
|
|
622
622
|
"viewBox": "0 0 160 160",
|
|
623
623
|
"class": "design-iconfont"
|
|
@@ -626,7 +626,7 @@ const renderFindNull = (bem) => _createVNode("svg", {
|
|
|
626
626
|
"y1": "100%",
|
|
627
627
|
"x2": "50%",
|
|
628
628
|
"y2": "0%",
|
|
629
|
-
"id":
|
|
629
|
+
"id": getId(1)
|
|
630
630
|
}, [_createVNode("stop", {
|
|
631
631
|
"class": bem("svg-defs-stop-color"),
|
|
632
632
|
"stop-opacity": ".1",
|
|
@@ -640,7 +640,7 @@ const renderFindNull = (bem) => _createVNode("svg", {
|
|
|
640
640
|
"y1": "100%",
|
|
641
641
|
"x2": "50%",
|
|
642
642
|
"y2": "0%",
|
|
643
|
-
"id":
|
|
643
|
+
"id": getId(2)
|
|
644
644
|
}, [_createVNode("stop", {
|
|
645
645
|
"class": bem("svg-defs-stop-color"),
|
|
646
646
|
"stop-opacity": "0",
|
|
@@ -654,7 +654,7 @@ const renderFindNull = (bem) => _createVNode("svg", {
|
|
|
654
654
|
"y1": "100%",
|
|
655
655
|
"x2": "50%",
|
|
656
656
|
"y2": "0%",
|
|
657
|
-
"id":
|
|
657
|
+
"id": getId(3)
|
|
658
658
|
}, [_createVNode("stop", {
|
|
659
659
|
"class": bem("svg-defs-stop-color"),
|
|
660
660
|
"offset": "0%"
|
|
@@ -667,7 +667,7 @@ const renderFindNull = (bem) => _createVNode("svg", {
|
|
|
667
667
|
"width": "181.2%",
|
|
668
668
|
"height": "183.9%",
|
|
669
669
|
"filterUnits": "objectBoundingBox",
|
|
670
|
-
"id":
|
|
670
|
+
"id": getId(4)
|
|
671
671
|
}, [_createVNode("feOffset", {
|
|
672
672
|
"dy": "2",
|
|
673
673
|
"in": "SourceGraphic",
|
|
@@ -691,22 +691,22 @@ const renderFindNull = (bem) => _createVNode("svg", {
|
|
|
691
691
|
"d": "M80 0A80 80 0 1 0 80 160A80 80 0 1 0 80 0Z"
|
|
692
692
|
}, null), _createVNode("path", {
|
|
693
693
|
"d": "M114,80 C118.418278,80 122,83.581722 122,88 L122,107 C122,118.59798 112.59798,128 101,128 L88,128 C84.1855747,128 80.9946648,125.330413 80.1937019,121.757672 C98.1007036,119.680283 112,104.463319 112,86 L112,80 L114,80 Z",
|
|
694
|
-
"fill":
|
|
694
|
+
"fill": getUrlById(1)
|
|
695
695
|
}, null), _createVNode("path", {
|
|
696
696
|
"d": "M56,44 L96,44 C102.627417,44 108,49.372583 108,56 L108,86 C108,103.673112 93.673112,118 76,118 L56,118 C49.372583,118 44,112.627417 44,106 L44,56 C44,49.372583 49.372583,44 56,44 Z",
|
|
697
|
-
"fill":
|
|
697
|
+
"fill": getUrlById(2)
|
|
698
698
|
}, null), _createVNode("path", {
|
|
699
699
|
"d": "M90,31 C92.209139,31 94,32.790861 94,35 L94,40 L96,40 C104.836556,40 112,47.163444 112,56 L112,86 C112,105.882251 95.882251,122 76,122 L56,122 C47.163444,122 40,114.836556 40,106 L40,56 C40,47.163444 47.163444,40 56,40 L58,40 L58,35 C58,32.790861 59.790861,31 62,31 C64.209139,31 66,32.790861 66,35 L66,40 L86,40 L86,35 C86,32.790861 87.790861,31 90,31 Z M96,48 L56,48 C51.581722,48 48,51.581722 48,56 L48,106 C48,110.418278 51.581722,114 56,114 L76,114 C91.463973,114 104,101.463973 104,86 L104,56 C104,51.581722 100.418278,48 96,48 Z",
|
|
700
|
-
"fill":
|
|
700
|
+
"fill": getUrlById(3)
|
|
701
701
|
}, null), _createVNode("g", null, [_createVNode("use", {
|
|
702
702
|
"class": bem("svg-defs-path-fill"),
|
|
703
|
-
"filter":
|
|
703
|
+
"filter": getUrlById(4),
|
|
704
704
|
"xlink:href": "#cgogdnfso__sffqrzc91e"
|
|
705
705
|
}, null), _createVNode("use", {
|
|
706
706
|
"fill": "#FFF",
|
|
707
707
|
"xlink:href": "#cgogdnfso__sffqrzc91e"
|
|
708
708
|
}, null)])])]);
|
|
709
|
-
const renderEmptyInterface = (bem) => _createVNode("svg", {
|
|
709
|
+
const renderEmptyInterface = (bem, getId, getUrlById) => _createVNode("svg", {
|
|
710
710
|
"xmlns": "http://www.w3.org/2000/svg",
|
|
711
711
|
"viewBox": "0 0 160 160",
|
|
712
712
|
"class": "design-iconfont"
|
|
@@ -715,7 +715,7 @@ const renderEmptyInterface = (bem) => _createVNode("svg", {
|
|
|
715
715
|
"y1": "100%",
|
|
716
716
|
"x2": "50%",
|
|
717
717
|
"y2": "0%",
|
|
718
|
-
"id":
|
|
718
|
+
"id": getId(1)
|
|
719
719
|
}, [_createVNode("stop", {
|
|
720
720
|
"class": bem("svg-defs-stop-color"),
|
|
721
721
|
"stop-opacity": ".1",
|
|
@@ -729,7 +729,7 @@ const renderEmptyInterface = (bem) => _createVNode("svg", {
|
|
|
729
729
|
"y1": "100%",
|
|
730
730
|
"x2": "50%",
|
|
731
731
|
"y2": "0%",
|
|
732
|
-
"id":
|
|
732
|
+
"id": getId(2)
|
|
733
733
|
}, [_createVNode("stop", {
|
|
734
734
|
"class": bem("svg-defs-stop-color"),
|
|
735
735
|
"stop-opacity": "0",
|
|
@@ -743,7 +743,7 @@ const renderEmptyInterface = (bem) => _createVNode("svg", {
|
|
|
743
743
|
"y1": "100%",
|
|
744
744
|
"x2": "50%",
|
|
745
745
|
"y2": "0%",
|
|
746
|
-
"id":
|
|
746
|
+
"id": getId(3)
|
|
747
747
|
}, [_createVNode("stop", {
|
|
748
748
|
"class": bem("svg-defs-stop-color"),
|
|
749
749
|
"offset": "0%"
|
|
@@ -756,7 +756,7 @@ const renderEmptyInterface = (bem) => _createVNode("svg", {
|
|
|
756
756
|
"width": "172.2%",
|
|
757
757
|
"height": "425%",
|
|
758
758
|
"filterUnits": "objectBoundingBox",
|
|
759
|
-
"id":
|
|
759
|
+
"id": getId(4)
|
|
760
760
|
}, [_createVNode("feOffset", {
|
|
761
761
|
"dy": "2",
|
|
762
762
|
"in": "SourceGraphic",
|
|
@@ -780,22 +780,22 @@ const renderEmptyInterface = (bem) => _createVNode("svg", {
|
|
|
780
780
|
"d": "M80 0A80 80 0 1 0 80 160A80 80 0 1 0 80 0Z"
|
|
781
781
|
}, null), _createVNode("path", {
|
|
782
782
|
"d": "M114,80 C118.418278,80 122,83.581722 122,88 L122,107 C122,118.59798 112.59798,128 101,128 L88,128 C84.1855747,128 80.9946648,125.330413 80.1937019,121.757672 C98.1007036,119.680283 112,104.463319 112,86 L112,80 L114,80 Z",
|
|
783
|
-
"fill":
|
|
783
|
+
"fill": getUrlById(1)
|
|
784
784
|
}, null), _createVNode("path", {
|
|
785
785
|
"d": "M56,44 L96,44 C102.627417,44 108,49.372583 108,56 L108,86 C108,103.673112 93.673112,118 76,118 L56,118 C49.372583,118 44,112.627417 44,106 L44,56 C44,49.372583 49.372583,44 56,44 Z",
|
|
786
|
-
"fill":
|
|
786
|
+
"fill": getUrlById(2)
|
|
787
787
|
}, null), _createVNode("path", {
|
|
788
788
|
"d": "M90,31 C92.209139,31 94,32.790861 94,35 L94,40 L96,40 C104.836556,40 112,47.163444 112,56 L112,86 C112,105.882251 95.882251,122 76,122 L56,122 C47.163444,122 40,114.836556 40,106 L40,56 C40,47.163444 47.163444,40 56,40 L58,40 L58,35 C58,32.790861 59.790861,31 62,31 C64.209139,31 66,32.790861 66,35 L66,40 L86,40 L86,35 C86,32.790861 87.790861,31 90,31 Z M96,48 L56,48 C51.581722,48 48,51.581722 48,56 L48,106 C48,110.418278 51.581722,114 56,114 L76,114 C91.463973,114 104,101.463973 104,86 L104,56 C104,51.581722 100.418278,48 96,48 Z",
|
|
789
|
-
"fill":
|
|
789
|
+
"fill": getUrlById(3)
|
|
790
790
|
}, null), _createVNode("g", null, [_createVNode("use", {
|
|
791
791
|
"class": bem("svg-defs-path-fill"),
|
|
792
|
-
"filter":
|
|
792
|
+
"filter": getUrlById(4),
|
|
793
793
|
"xlink:href": "#6t7l7j7ds__41nn7lg6ve"
|
|
794
794
|
}, null), _createVNode("use", {
|
|
795
795
|
"fill": "#FFF",
|
|
796
796
|
"xlink:href": "#6t7l7j7ds__41nn7lg6ve"
|
|
797
797
|
}, null)])])]);
|
|
798
|
-
const renderReportSuccess = (bem) => _createVNode("svg", {
|
|
798
|
+
const renderReportSuccess = (bem, getId, getUrlById) => _createVNode("svg", {
|
|
799
799
|
"xmlns": "http://www.w3.org/2000/svg",
|
|
800
800
|
"viewBox": "0 0 160 160",
|
|
801
801
|
"class": "design-iconfont"
|
|
@@ -804,7 +804,7 @@ const renderReportSuccess = (bem) => _createVNode("svg", {
|
|
|
804
804
|
"y1": "100%",
|
|
805
805
|
"x2": "50%",
|
|
806
806
|
"y2": "0%",
|
|
807
|
-
"id":
|
|
807
|
+
"id": getId(1)
|
|
808
808
|
}, [_createVNode("stop", {
|
|
809
809
|
"class": bem("svg-defs-stop-color"),
|
|
810
810
|
"stop-opacity": ".1",
|
|
@@ -818,7 +818,7 @@ const renderReportSuccess = (bem) => _createVNode("svg", {
|
|
|
818
818
|
"y1": "100%",
|
|
819
819
|
"x2": "50%",
|
|
820
820
|
"y2": "0%",
|
|
821
|
-
"id":
|
|
821
|
+
"id": getId(2)
|
|
822
822
|
}, [_createVNode("stop", {
|
|
823
823
|
"class": bem("svg-defs-stop-color"),
|
|
824
824
|
"stop-opacity": "0",
|
|
@@ -832,7 +832,7 @@ const renderReportSuccess = (bem) => _createVNode("svg", {
|
|
|
832
832
|
"y1": "100%",
|
|
833
833
|
"x2": "50%",
|
|
834
834
|
"y2": "0%",
|
|
835
|
-
"id":
|
|
835
|
+
"id": getId(3)
|
|
836
836
|
}, [_createVNode("stop", {
|
|
837
837
|
"class": bem("svg-defs-stop-color"),
|
|
838
838
|
"offset": "0%"
|
|
@@ -845,7 +845,7 @@ const renderReportSuccess = (bem) => _createVNode("svg", {
|
|
|
845
845
|
"width": "169.6%",
|
|
846
846
|
"height": "168.4%",
|
|
847
847
|
"filterUnits": "objectBoundingBox",
|
|
848
|
-
"id":
|
|
848
|
+
"id": getId(4)
|
|
849
849
|
}, [_createVNode("feOffset", {
|
|
850
850
|
"dy": "2",
|
|
851
851
|
"in": "SourceGraphic",
|
|
@@ -863,7 +863,7 @@ const renderReportSuccess = (bem) => _createVNode("svg", {
|
|
|
863
863
|
"width": "220%",
|
|
864
864
|
"height": "220%",
|
|
865
865
|
"filterUnits": "objectBoundingBox",
|
|
866
|
-
"id":
|
|
866
|
+
"id": getId(5)
|
|
867
867
|
}, [_createVNode("feOffset", {
|
|
868
868
|
"dy": "3",
|
|
869
869
|
"in": "SourceGraphic",
|
|
@@ -890,16 +890,16 @@ const renderReportSuccess = (bem) => _createVNode("svg", {
|
|
|
890
890
|
"d": "M80 0A80 80 0 1 0 80 160A80 80 0 1 0 80 0Z"
|
|
891
891
|
}, null), _createVNode("path", {
|
|
892
892
|
"d": "M114,80 C118.418278,80 122,83.581722 122,88 L122,107 C122,118.59798 112.59798,128 101,128 L88,128 C84.1855747,128 80.9946648,125.330413 80.1937019,121.757672 C98.1007036,119.680283 112,104.463319 112,86 L112,80 L114,80 Z",
|
|
893
|
-
"fill":
|
|
893
|
+
"fill": getUrlById(1)
|
|
894
894
|
}, null), _createVNode("path", {
|
|
895
895
|
"d": "M56,44 L96,44 C102.627417,44 108,49.372583 108,56 L108,86 C108,103.673112 93.673112,118 76,118 L56,118 C49.372583,118 44,112.627417 44,106 L44,56 C44,49.372583 49.372583,44 56,44 Z",
|
|
896
|
-
"fill":
|
|
896
|
+
"fill": getUrlById(2)
|
|
897
897
|
}, null), _createVNode("path", {
|
|
898
898
|
"d": "M90,31 C92.209139,31 94,32.790861 94,35 L94,40 L96,40 C104.836556,40 112,47.163444 112,56 L112,86 C112,105.882251 95.882251,122 76,122 L56,122 C47.163444,122 40,114.836556 40,106 L40,56 C40,47.163444 47.163444,40 56,40 L58,40 L58,35 C58,32.790861 59.790861,31 62,31 C64.209139,31 66,32.790861 66,35 L66,40 L86,40 L86,35 C86,32.790861 87.790861,31 90,31 Z M96,48 L56,48 C51.581722,48 48,51.581722 48,56 L48,106 C48,110.418278 51.581722,114 56,114 L76,114 C91.463973,114 104,101.463973 104,86 L104,56 C104,51.581722 100.418278,48 96,48 Z",
|
|
899
|
-
"fill":
|
|
899
|
+
"fill": getUrlById(3)
|
|
900
900
|
}, null), _createVNode("g", null, [_createVNode("use", {
|
|
901
901
|
"class": bem("svg-defs-path-fill"),
|
|
902
|
-
"filter":
|
|
902
|
+
"filter": getUrlById(4),
|
|
903
903
|
"xlink:href": "#h3r8rva5d__d7rd04hahe"
|
|
904
904
|
}, null), _createVNode("use", {
|
|
905
905
|
"fill": "#FFF",
|
|
@@ -908,7 +908,7 @@ const renderReportSuccess = (bem) => _createVNode("svg", {
|
|
|
908
908
|
"transform": "translate(78 77)"
|
|
909
909
|
}, [_createVNode("use", {
|
|
910
910
|
"class": bem("svg-defs-path-fill"),
|
|
911
|
-
"filter":
|
|
911
|
+
"filter": getUrlById(5),
|
|
912
912
|
"xlink:href": "#h3r8rva5d__jk95ntyavg"
|
|
913
913
|
}, null), _createVNode("use", {
|
|
914
914
|
"fill": "#28CD78",
|
|
@@ -919,7 +919,7 @@ const renderReportSuccess = (bem) => _createVNode("svg", {
|
|
|
919
919
|
"fill-rule": "nonzero",
|
|
920
920
|
"transform": "translate(78 77)"
|
|
921
921
|
}, null)])]);
|
|
922
|
-
const renderReportError = (bem) => _createVNode("svg", {
|
|
922
|
+
const renderReportError = (bem, getId, getUrlById) => _createVNode("svg", {
|
|
923
923
|
"xmlns": "http://www.w3.org/2000/svg",
|
|
924
924
|
"viewBox": "0 0 160 160",
|
|
925
925
|
"class": "design-iconfont"
|
|
@@ -928,7 +928,7 @@ const renderReportError = (bem) => _createVNode("svg", {
|
|
|
928
928
|
"y1": "100%",
|
|
929
929
|
"x2": "50%",
|
|
930
930
|
"y2": "0%",
|
|
931
|
-
"id":
|
|
931
|
+
"id": getId(1)
|
|
932
932
|
}, [_createVNode("stop", {
|
|
933
933
|
"class": bem("svg-defs-stop-color"),
|
|
934
934
|
"stop-opacity": ".1",
|
|
@@ -942,7 +942,7 @@ const renderReportError = (bem) => _createVNode("svg", {
|
|
|
942
942
|
"y1": "100%",
|
|
943
943
|
"x2": "50%",
|
|
944
944
|
"y2": "0%",
|
|
945
|
-
"id":
|
|
945
|
+
"id": getId(2)
|
|
946
946
|
}, [_createVNode("stop", {
|
|
947
947
|
"class": bem("svg-defs-stop-color"),
|
|
948
948
|
"stop-opacity": "0",
|
|
@@ -956,7 +956,7 @@ const renderReportError = (bem) => _createVNode("svg", {
|
|
|
956
956
|
"y1": "100%",
|
|
957
957
|
"x2": "50%",
|
|
958
958
|
"y2": "0%",
|
|
959
|
-
"id":
|
|
959
|
+
"id": getId(3)
|
|
960
960
|
}, [_createVNode("stop", {
|
|
961
961
|
"class": bem("svg-defs-stop-color"),
|
|
962
962
|
"offset": "0%"
|
|
@@ -969,7 +969,7 @@ const renderReportError = (bem) => _createVNode("svg", {
|
|
|
969
969
|
"width": "169.6%",
|
|
970
970
|
"height": "168.4%",
|
|
971
971
|
"filterUnits": "objectBoundingBox",
|
|
972
|
-
"id":
|
|
972
|
+
"id": getId(4)
|
|
973
973
|
}, [_createVNode("feOffset", {
|
|
974
974
|
"dy": "2",
|
|
975
975
|
"in": "SourceGraphic",
|
|
@@ -987,7 +987,7 @@ const renderReportError = (bem) => _createVNode("svg", {
|
|
|
987
987
|
"width": "170%",
|
|
988
988
|
"height": "170%",
|
|
989
989
|
"filterUnits": "objectBoundingBox",
|
|
990
|
-
"id":
|
|
990
|
+
"id": getId(5)
|
|
991
991
|
}, [_createVNode("feOffset", {
|
|
992
992
|
"dy": "2",
|
|
993
993
|
"in": "SourceGraphic",
|
|
@@ -1014,16 +1014,16 @@ const renderReportError = (bem) => _createVNode("svg", {
|
|
|
1014
1014
|
"d": "M80 0A80 80 0 1 0 80 160A80 80 0 1 0 80 0Z"
|
|
1015
1015
|
}, null), _createVNode("path", {
|
|
1016
1016
|
"d": "M114,80 C118.418278,80 122,83.581722 122,88 L122,107 C122,118.59798 112.59798,128 101,128 L88,128 C84.1855747,128 80.9946648,125.330413 80.1937019,121.757672 C98.1007036,119.680283 112,104.463319 112,86 L112,80 L114,80 Z",
|
|
1017
|
-
"fill":
|
|
1017
|
+
"fill": getUrlById(1)
|
|
1018
1018
|
}, null), _createVNode("path", {
|
|
1019
1019
|
"d": "M56,44 L96,44 C102.627417,44 108,49.372583 108,56 L108,86 C108,103.673112 93.673112,118 76,118 L56,118 C49.372583,118 44,112.627417 44,106 L44,56 C44,49.372583 49.372583,44 56,44 Z",
|
|
1020
|
-
"fill":
|
|
1020
|
+
"fill": getUrlById(2)
|
|
1021
1021
|
}, null), _createVNode("path", {
|
|
1022
1022
|
"d": "M90,31 C92.209139,31 94,32.790861 94,35 L94,40 L96,40 C104.836556,40 112,47.163444 112,56 L112,86 C112,105.882251 95.882251,122 76,122 L56,122 C47.163444,122 40,114.836556 40,106 L40,56 C40,47.163444 47.163444,40 56,40 L58,40 L58,35 C58,32.790861 59.790861,31 62,31 C64.209139,31 66,32.790861 66,35 L66,40 L86,40 L86,35 C86,32.790861 87.790861,31 90,31 Z M96,48 L56,48 C51.581722,48 48,51.581722 48,56 L48,106 C48,110.418278 51.581722,114 56,114 L76,114 C91.463973,114 104,101.463973 104,86 L104,56 C104,51.581722 100.418278,48 96,48 Z",
|
|
1023
|
-
"fill":
|
|
1023
|
+
"fill": getUrlById(3)
|
|
1024
1024
|
}, null), _createVNode("g", null, [_createVNode("use", {
|
|
1025
1025
|
"class": bem("svg-defs-path-fill"),
|
|
1026
|
-
"filter":
|
|
1026
|
+
"filter": getUrlById(4),
|
|
1027
1027
|
"xlink:href": "#hjjrs2jmp__inq21tde9e"
|
|
1028
1028
|
}, null), _createVNode("use", {
|
|
1029
1029
|
"fill": "#FFF",
|
|
@@ -1032,7 +1032,7 @@ const renderReportError = (bem) => _createVNode("svg", {
|
|
|
1032
1032
|
"transform": "translate(78 77)"
|
|
1033
1033
|
}, [_createVNode("use", {
|
|
1034
1034
|
"class": bem("svg-defs-path-fill"),
|
|
1035
|
-
"filter":
|
|
1035
|
+
"filter": getUrlById(5),
|
|
1036
1036
|
"xlink:href": "#hjjrs2jmp__l8g1n1l71g"
|
|
1037
1037
|
}, null), _createVNode("use", {
|
|
1038
1038
|
"fill": "#FF5023",
|
|
@@ -1043,7 +1043,7 @@ const renderReportError = (bem) => _createVNode("svg", {
|
|
|
1043
1043
|
"fill-rule": "nonzero",
|
|
1044
1044
|
"transform": "translate(78 77)"
|
|
1045
1045
|
}, null)])]);
|
|
1046
|
-
const renderNoCollect = (bem) => _createVNode("svg", {
|
|
1046
|
+
const renderNoCollect = (bem, getId, getUrlById) => _createVNode("svg", {
|
|
1047
1047
|
"xmlns": "http://www.w3.org/2000/svg",
|
|
1048
1048
|
"viewBox": "0 0 160 160",
|
|
1049
1049
|
"class": "design-iconfont"
|
|
@@ -1052,7 +1052,7 @@ const renderNoCollect = (bem) => _createVNode("svg", {
|
|
|
1052
1052
|
"y1": "100%",
|
|
1053
1053
|
"x2": "50%",
|
|
1054
1054
|
"y2": "0%",
|
|
1055
|
-
"id":
|
|
1055
|
+
"id": getId(1)
|
|
1056
1056
|
}, [_createVNode("stop", {
|
|
1057
1057
|
"class": bem("svg-defs-stop-color"),
|
|
1058
1058
|
"stop-opacity": ".1",
|
|
@@ -1066,7 +1066,7 @@ const renderNoCollect = (bem) => _createVNode("svg", {
|
|
|
1066
1066
|
"y1": "100%",
|
|
1067
1067
|
"x2": "50%",
|
|
1068
1068
|
"y2": "0%",
|
|
1069
|
-
"id":
|
|
1069
|
+
"id": getId(2)
|
|
1070
1070
|
}, [_createVNode("stop", {
|
|
1071
1071
|
"class": bem("svg-defs-stop-color"),
|
|
1072
1072
|
"stop-opacity": "0",
|
|
@@ -1080,7 +1080,7 @@ const renderNoCollect = (bem) => _createVNode("svg", {
|
|
|
1080
1080
|
"y1": "100%",
|
|
1081
1081
|
"x2": "50%",
|
|
1082
1082
|
"y2": "0%",
|
|
1083
|
-
"id":
|
|
1083
|
+
"id": getId(3)
|
|
1084
1084
|
}, [_createVNode("stop", {
|
|
1085
1085
|
"class": bem("svg-defs-stop-color"),
|
|
1086
1086
|
"offset": "0%"
|
|
@@ -1093,7 +1093,7 @@ const renderNoCollect = (bem) => _createVNode("svg", {
|
|
|
1093
1093
|
"width": "182.1%",
|
|
1094
1094
|
"height": "186.4%",
|
|
1095
1095
|
"filterUnits": "objectBoundingBox",
|
|
1096
|
-
"id":
|
|
1096
|
+
"id": getId(4)
|
|
1097
1097
|
}, [_createVNode("feOffset", {
|
|
1098
1098
|
"dy": "2",
|
|
1099
1099
|
"in": "SourceGraphic",
|
|
@@ -1117,16 +1117,16 @@ const renderNoCollect = (bem) => _createVNode("svg", {
|
|
|
1117
1117
|
"d": "M80 0A80 80 0 1 0 80 160A80 80 0 1 0 80 0Z"
|
|
1118
1118
|
}, null), _createVNode("path", {
|
|
1119
1119
|
"d": "M114,80 C118.418278,80 122,83.581722 122,88 L122,107 C122,118.59798 112.59798,128 101,128 L88,128 C84.1855747,128 80.9946648,125.330413 80.1937019,121.757672 C98.1007036,119.680283 112,104.463319 112,86 L112,80 L114,80 Z",
|
|
1120
|
-
"fill":
|
|
1120
|
+
"fill": getUrlById(1)
|
|
1121
1121
|
}, null), _createVNode("path", {
|
|
1122
1122
|
"d": "M56,44 L96,44 C102.627417,44 108,49.372583 108,56 L108,86 C108,103.673112 93.673112,118 76,118 L56,118 C49.372583,118 44,112.627417 44,106 L44,56 C44,49.372583 49.372583,44 56,44 Z",
|
|
1123
|
-
"fill":
|
|
1123
|
+
"fill": getUrlById(2)
|
|
1124
1124
|
}, null), _createVNode("path", {
|
|
1125
1125
|
"d": "M90,31 C92.209139,31 94,32.790861 94,35 L94,40 L96,40 C104.836556,40 112,47.163444 112,56 L112,86 C112,105.882251 95.882251,122 76,122 L56,122 C47.163444,122 40,114.836556 40,106 L40,56 C40,47.163444 47.163444,40 56,40 L58,40 L58,35 C58,32.790861 59.790861,31 62,31 C64.209139,31 66,32.790861 66,35 L66,40 L86,40 L86,35 C86,32.790861 87.790861,31 90,31 Z M96,48 L56,48 C51.581722,48 48,51.581722 48,56 L48,106 C48,110.418278 51.581722,114 56,114 L76,114 C91.463973,114 104,101.463973 104,86 L104,56 C104,51.581722 100.418278,48 96,48 Z",
|
|
1126
|
-
"fill":
|
|
1126
|
+
"fill": getUrlById(3)
|
|
1127
1127
|
}, null), _createVNode("g", null, [_createVNode("use", {
|
|
1128
1128
|
"class": bem("svg-defs-path-fill"),
|
|
1129
|
-
"filter":
|
|
1129
|
+
"filter": getUrlById(4),
|
|
1130
1130
|
"xlink:href": "#4roobwtpf__8hxpuw7vce"
|
|
1131
1131
|
}, null), _createVNode("use", {
|
|
1132
1132
|
"fill": "#FFF",
|