@aochuang/common 1.0.0 → 1.0.1

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 (194) hide show
  1. package/common/loading/index.js +7 -0
  2. package/common/loading/loading.vue +71 -0
  3. package/common/tips/index.js +7 -0
  4. package/common/tips/tips.vue +82 -0
  5. package/common/tooltip/index.js +7 -0
  6. package/common/tooltip/popper.js +18 -0
  7. package/common/tooltip/tooltip.vue +55 -0
  8. package/components/advanced-filter/advanced-filter-condition-item/advanced-filter-condition-item-boolean.vue +33 -0
  9. package/components/advanced-filter/advanced-filter-condition-item/advanced-filter-condition-item-date-range.vue +30 -0
  10. package/components/advanced-filter/advanced-filter-condition-item/advanced-filter-condition-item-date.vue +41 -0
  11. package/components/advanced-filter/advanced-filter-condition-item/advanced-filter-condition-item-datetime-range.vue +34 -0
  12. package/components/advanced-filter/advanced-filter-condition-item/advanced-filter-condition-item-datetime.vue +41 -0
  13. package/components/advanced-filter/advanced-filter-condition-item/advanced-filter-condition-item-number-range.vue +67 -0
  14. package/components/advanced-filter/advanced-filter-condition-item/advanced-filter-condition-item-number.vue +35 -0
  15. package/components/advanced-filter/advanced-filter-condition-item/advanced-filter-condition-item-string.vue +41 -0
  16. package/components/advanced-filter/advanced-filter-condition-item/advanced-filter-condition-item-value.vue +73 -0
  17. package/components/advanced-filter/advanced-filter-condition-item/advanced-filter-condition-item.vue +226 -0
  18. package/components/advanced-filter/advanced-filter-condition-toggle.vue +112 -0
  19. package/components/advanced-filter/advanced-filter-condition.vue +352 -0
  20. package/components/advanced-filter/advanced-filter-permanent-item.vue +10 -0
  21. package/components/advanced-filter/advanced-filter-permanent.vue +10 -0
  22. package/components/advanced-filter/advanced-filter-scene-form.vue +95 -0
  23. package/components/advanced-filter/advanced-filter-scene-item.vue +64 -0
  24. package/components/advanced-filter/advanced-filter-scene-manage.vue +264 -0
  25. package/components/advanced-filter/advanced-filter-scene-transfer.vue +283 -0
  26. package/components/advanced-filter/advanced-filter-scene.vue +199 -0
  27. package/components/advanced-filter/advanced-filter.vue +114 -0
  28. package/components/advanced-filter/index.js +36 -0
  29. package/components/advanced-filter/utils.js +132 -0
  30. package/components/autocomplete/autocomplete.vue +121 -0
  31. package/components/autocomplete/index.js +7 -0
  32. package/components/avatar/avatar.png +0 -0
  33. package/components/avatar/avatar.vue +212 -0
  34. package/components/avatar/index.js +7 -0
  35. package/components/brick-wall/brick-wall-skeleton.vue +125 -0
  36. package/components/brick-wall/brick-wall.vue +293 -0
  37. package/components/brick-wall/index.js +7 -0
  38. package/components/button/button.vue +537 -0
  39. package/components/button/index.js +7 -0
  40. package/components/button/utils.js +20 -0
  41. package/components/cascader/cascader.vue +184 -0
  42. package/components/cascader/index.js +7 -0
  43. package/components/cascader/util.js +50 -0
  44. package/components/checkbox/checkbox.vue +114 -0
  45. package/components/checkbox/index.js +7 -0
  46. package/components/checkbox-button/index.js +8 -0
  47. package/components/checkbox-group/checkbox-group.vue +11 -0
  48. package/components/checkbox-group/index.js +7 -0
  49. package/components/date-picker/date-picker.vue +300 -0
  50. package/components/date-picker/index.js +7 -0
  51. package/components/dialog/dialog.vue +182 -0
  52. package/components/dialog/index.js +14 -0
  53. package/components/dialog/utils.js +20 -0
  54. package/components/drawer/drawer.vue +186 -0
  55. package/components/drawer/index.js +14 -0
  56. package/components/drawer/utils.js +36 -0
  57. package/components/dropdown/dropdown-item.vue +63 -0
  58. package/components/dropdown/dropdown.vue +286 -0
  59. package/components/dropdown/index.js +16 -0
  60. package/components/empty/empty.vue +62 -0
  61. package/components/empty/index.js +7 -0
  62. package/components/filter/filter-group.vue +44 -0
  63. package/components/filter/filter-item.vue +122 -0
  64. package/components/filter/filter-more.vue +114 -0
  65. package/components/filter/filter.vue +407 -0
  66. package/components/filter/index.js +20 -0
  67. package/components/filter/refresh-line.svg +1 -0
  68. package/components/filter/util.js +5 -0
  69. package/components/form/form-cell.vue +231 -0
  70. package/components/form/form-group.vue +147 -0
  71. package/components/form/form-row.vue +51 -0
  72. package/components/form/form.vue +256 -0
  73. package/components/form/index.js +13 -0
  74. package/components/grid/grid-card-view/grid-card-view.vue +157 -0
  75. package/components/grid/grid-column.vue +136 -0
  76. package/components/grid/grid-filter/grid-filter-group.vue +41 -0
  77. package/components/grid/grid-filter/grid-filter-item.vue +68 -0
  78. package/components/grid/grid-filter/grid-filter.vue +115 -0
  79. package/components/grid/grid-filter/util.js +7 -0
  80. package/components/grid/grid-filter-operate/grid-filter-operate-item.vue +55 -0
  81. package/components/grid/grid-filter-operate/grid-filter-operate.vue +46 -0
  82. package/components/grid/grid-sort/grid-sort-proxy.js +27 -0
  83. package/components/grid/grid-sort/grid-sort.vue +205 -0
  84. package/components/grid/grid-sort/icons/asc.png +0 -0
  85. package/components/grid/grid-sort/icons/desc.png +0 -0
  86. package/components/grid/grid-sort/index.js +7 -0
  87. package/components/grid/grid-table-view/grid-table-view.vue +178 -0
  88. package/components/grid/grid-table.vue +547 -0
  89. package/components/grid/grid-toolbar/grid-batch-toolbar-proxy.js +21 -0
  90. package/components/grid/grid-toolbar/grid-batch-toolbar.vue +129 -0
  91. package/components/grid/grid-toolbar/grid-global-toolbar-proxy.js +21 -0
  92. package/components/grid/grid-toolbar/grid-global-toolbar.vue +37 -0
  93. package/components/grid/grid-toolbar/grid-more-toolbar-proxy.js +21 -0
  94. package/components/grid/grid-toolbar/grid-more-toolbar.vue +138 -0
  95. package/components/grid/grid-toolbar/grid-row-toolbar.vue +279 -0
  96. package/components/grid/grid-view-select.vue +78 -0
  97. package/components/grid/grid.vue +1102 -0
  98. package/components/grid/icons/more-line.svg +1 -0
  99. package/components/grid/icons/refresh.svg +14 -0
  100. package/components/grid/index.js +61 -0
  101. package/components/grid/util.js +31 -0
  102. package/components/icon/demo.css +539 -0
  103. package/components/icon/demo_index.html +7433 -0
  104. package/components/icon/icon.vue +96 -0
  105. package/components/icon/iconfont.css +1275 -0
  106. package/components/icon/iconfont.eot +0 -0
  107. package/components/icon/iconfont.js +1 -0
  108. package/components/icon/iconfont.json +2214 -0
  109. package/components/icon/iconfont.svg +455 -0
  110. package/components/icon/iconfont.ttf +0 -0
  111. package/components/icon/iconfont.woff +0 -0
  112. package/components/icon/iconfont.woff2 +0 -0
  113. package/components/icon/index.js +7 -0
  114. package/components/image/image.vue +299 -0
  115. package/components/image/index.js +12 -0
  116. package/components/image/util.js +26 -0
  117. package/components/index.js +153 -0
  118. package/components/loading/index.js +7 -0
  119. package/components/loading/loading.vue +130 -0
  120. package/components/menu/index.js +14 -0
  121. package/components/menu/menu-group.vue +240 -0
  122. package/components/menu/menu-item.vue +215 -0
  123. package/components/menu/menu.vue +64 -0
  124. package/components/message/index.js +19 -0
  125. package/components/message/message.js +28 -0
  126. package/components/message/message.less +6 -0
  127. package/components/message-box/index.js +10 -0
  128. package/components/message-box/message-box.js +140 -0
  129. package/components/message-box/message-box.less +5 -0
  130. package/components/pagination/index.js +7 -0
  131. package/components/pagination/pagination.vue +193 -0
  132. package/components/panel/index.js +7 -0
  133. package/components/panel/panel.vue +44 -0
  134. package/components/popover/index.js +7 -0
  135. package/components/popover/popover.vue +140 -0
  136. package/components/popup-select/index.js +7 -0
  137. package/components/popup-select/popup-select.vue +114 -0
  138. package/components/radio/index.js +7 -0
  139. package/components/radio/radio.vue +92 -0
  140. package/components/radio-button/index.js +7 -0
  141. package/components/radio-button/radio-button.vue +20 -0
  142. package/components/radio-group/index.js +7 -0
  143. package/components/radio-group/radio-group.vue +22 -0
  144. package/components/searchbox/index.js +7 -0
  145. package/components/searchbox/searchbox.vue +260 -0
  146. package/components/select/index.js +9 -0
  147. package/components/select/select-load-more.vue +53 -0
  148. package/components/select/select.vue +572 -0
  149. package/components/skeleton/index.js +14 -0
  150. package/components/skeleton/skeleton-rows.vue +52 -0
  151. package/components/skeleton/skeleton.vue +72 -0
  152. package/components/sortable/index.js +9 -0
  153. package/components/sortable/sortable-item.vue +77 -0
  154. package/components/sortable/sortable.vue +62 -0
  155. package/components/spinner/index.js +7 -0
  156. package/components/spinner/spinner.vue +121 -0
  157. package/components/spinner-range/index.js +7 -0
  158. package/components/spinner-range/spinner-range.vue +97 -0
  159. package/components/spinner-textarea/index.js +7 -0
  160. package/components/spinner-textarea/spinner-textarea.vue +65 -0
  161. package/components/switch/index.js +7 -0
  162. package/components/switch/switch.vue +105 -0
  163. package/components/tabs/index.js +10 -0
  164. package/components/tabs/tabs.vue +115 -0
  165. package/components/tag/index.js +9 -0
  166. package/components/tag/tag.less +30 -0
  167. package/components/text/index.js +7 -0
  168. package/components/text/text.vue +69 -0
  169. package/components/textarea/index.js +7 -0
  170. package/components/textarea/textarea.vue +229 -0
  171. package/components/textbox/index.js +7 -0
  172. package/components/textbox/textbox.vue +275 -0
  173. package/components/time-picker/index.js +7 -0
  174. package/components/time-picker/time-picker.vue +77 -0
  175. package/components/toolbar/index.js +14 -0
  176. package/components/toolbar/toolbar-item.vue +43 -0
  177. package/components/toolbar/toolbar.vue +81 -0
  178. package/components/tooltip/index.js +9 -0
  179. package/components/tooltip/tooltip.vue +86 -0
  180. package/components/transfer/index.js +7 -0
  181. package/components/transfer/transfer-load-more.vue +53 -0
  182. package/components/transfer/transfer.vue +245 -0
  183. package/components/tree/index.js +7 -0
  184. package/components/tree/tree.vue +326 -0
  185. package/components/tree/utils.js +122 -0
  186. package/components/video/index.js +7 -0
  187. package/components/video/video.vue +53 -0
  188. package/package.json +4 -1
  189. package/utils/date.js +55 -0
  190. package/utils/emitter.js +3 -0
  191. package/utils/json.js +19 -0
  192. package/utils/resize-event.js +35 -0
  193. package/utils/util.js +12 -0
  194. package/utils/utils.js +0 -0
@@ -0,0 +1,1275 @@
1
+ @font-face {
2
+ font-family: "iconfont"; /* Project id 4387417 */
3
+ src: url('iconfont.woff2?t=1741349725389') format('woff2'),
4
+ url('iconfont.woff?t=1741349725389') format('woff'),
5
+ url('iconfont.ttf?t=1741349725389') format('truetype');
6
+ }
7
+
8
+ .iconfont {
9
+ font-family: "iconfont" !important;
10
+ font-size: 16px;
11
+ font-style: normal;
12
+ -webkit-font-smoothing: antialiased;
13
+ -moz-osx-font-smoothing: grayscale;
14
+ }
15
+
16
+ .icon-openai-fill:before {
17
+ content: "\eac8";
18
+ }
19
+
20
+ .icon-alert-fill1:before {
21
+ content: "\e83c";
22
+ }
23
+
24
+ .icon-whatsapp:before {
25
+ content: "\e86a";
26
+ }
27
+
28
+ .icon-white-dove-line:before {
29
+ content: "\e6a7";
30
+ }
31
+
32
+ .icon-chakanxiangqing:before {
33
+ content: "\e6af";
34
+ }
35
+
36
+ .icon-folder-3-line:before {
37
+ content: "\e77c";
38
+ }
39
+
40
+ .icon-space-line:before {
41
+ content: "\e829";
42
+ }
43
+
44
+ .icon-yingxiaoguanli:before {
45
+ content: "\e6a6";
46
+ }
47
+
48
+ .icon-shujufenxi1:before {
49
+ content: "\e6ac";
50
+ }
51
+
52
+ .icon-qiyeguanliqi:before {
53
+ content: "\e6a8";
54
+ }
55
+
56
+ .icon-shebeiguanli:before {
57
+ content: "\e6a9";
58
+ }
59
+
60
+ .icon-fengkongguanli:before {
61
+ content: "\e6aa";
62
+ }
63
+
64
+ .icon-huishouzhan:before {
65
+ content: "\e6a5";
66
+ }
67
+
68
+ .icon-yuechi:before {
69
+ content: "\e6a4";
70
+ }
71
+
72
+ .icon-michiguanli:before {
73
+ content: "\e6a3";
74
+ }
75
+
76
+ .icon-huodongyingxiao:before {
77
+ content: "\e6a2";
78
+ }
79
+
80
+ .icon-sucai:before {
81
+ content: "\ebb6";
82
+ }
83
+
84
+ .icon-jiqiren:before {
85
+ content: "\e6a1";
86
+ }
87
+
88
+ .icon-user-3-fill:before {
89
+ content: "\eae6";
90
+ }
91
+
92
+ .icon-arrow-left-circle-line1:before {
93
+ content: "\e842";
94
+ }
95
+
96
+ .icon-lock-fill:before {
97
+ content: "\e860";
98
+ }
99
+
100
+ .icon-filter-line1:before {
101
+ content: "\e858";
102
+ }
103
+
104
+ .icon-filter-fill:before {
105
+ content: "\e859";
106
+ }
107
+
108
+ .icon-lock-line:before {
109
+ content: "\e8df";
110
+ }
111
+
112
+ .icon-lock-unlock-line:before {
113
+ content: "\e8e3";
114
+ }
115
+
116
+ .icon-room-member-sync-line:before {
117
+ content: "\e6ab";
118
+ }
119
+
120
+ .icon-room-member-sync-1-line:before {
121
+ content: "\e6a0";
122
+ }
123
+
124
+ .icon-friend-chat-line:before {
125
+ content: "\e69c";
126
+ }
127
+
128
+ .icon-room-chat-line:before {
129
+ content: "\e69d";
130
+ }
131
+
132
+ .icon-moments-line:before {
133
+ content: "\e7b3";
134
+ }
135
+
136
+ .icon-room-member-view-line:before {
137
+ content: "\e69b";
138
+ }
139
+
140
+ .icon-exception-line:before {
141
+ content: "\e69a";
142
+ }
143
+
144
+ .icon-save-3-line:before {
145
+ content: "\e9e0";
146
+ }
147
+
148
+ .icon-todo-line:before {
149
+ content: "\eac3";
150
+ }
151
+
152
+ .icon-device-bind-line:before {
153
+ content: "\e699";
154
+ }
155
+
156
+ .icon-oa-fill:before {
157
+ content: "\e602";
158
+ }
159
+
160
+ .icon-add-friend-fill:before {
161
+ content: "\e8ca";
162
+ }
163
+
164
+ .icon-wechat-fill:before {
165
+ content: "\e884";
166
+ }
167
+
168
+ .icon-sms-fill:before {
169
+ content: "\e601";
170
+ }
171
+
172
+ .icon-user-round-line:before {
173
+ content: "\e8c1";
174
+ }
175
+
176
+ .icon-company-1-line:before {
177
+ content: "\e697";
178
+ }
179
+
180
+ .icon-leads-line:before {
181
+ content: "\e698";
182
+ }
183
+
184
+ .icon-call-center-fill:before {
185
+ content: "\e695";
186
+ }
187
+
188
+ .icon-window-app-line:before {
189
+ content: "\e661";
190
+ }
191
+
192
+ .icon-view-video-line:before {
193
+ content: "\e662";
194
+ }
195
+
196
+ .icon-weixinqun-line:before {
197
+ content: "\e663";
198
+ }
199
+
200
+ .icon-weixinhao-line:before {
201
+ content: "\e664";
202
+ }
203
+
204
+ .icon-wechat:before {
205
+ content: "\e665";
206
+ }
207
+
208
+ .icon-view-image-line:before {
209
+ content: "\e666";
210
+ }
211
+
212
+ .icon-yunkefu-line:before {
213
+ content: "\e667";
214
+ }
215
+
216
+ .icon-plugin-line:before {
217
+ content: "\e668";
218
+ }
219
+
220
+ .icon-arrow-down-circle-line:before {
221
+ content: "\e83d";
222
+ }
223
+
224
+ .icon-shebeisousuo:before {
225
+ content: "\ead2";
226
+ }
227
+
228
+ .icon-shebeisousuo_o:before {
229
+ content: "\eb58";
230
+ }
231
+
232
+ .icon-command-fill:before {
233
+ content: "\e72d";
234
+ }
235
+
236
+ .icon-link-unlink-m1:before {
237
+ content: "\e79c";
238
+ }
239
+
240
+ .icon-shut-down-line:before {
241
+ content: "\e750";
242
+ }
243
+
244
+ .icon-contacts-fill:before {
245
+ content: "\e69f";
246
+ }
247
+
248
+ .icon-upload-cloud-2-line:before {
249
+ content: "\e87c";
250
+ }
251
+
252
+ .icon-hotel-line:before {
253
+ content: "\e6bb";
254
+ }
255
+
256
+ .icon-archive-drawer-line:before {
257
+ content: "\e6be";
258
+ }
259
+
260
+ .icon-cloud-off-line1:before {
261
+ content: "\e6cc";
262
+ }
263
+
264
+ .icon-team-line:before {
265
+ content: "\e887";
266
+ }
267
+
268
+ .icon-user-2-line:before {
269
+ content: "\e888";
270
+ }
271
+
272
+ .icon-cloudy-2-line:before {
273
+ content: "\e896";
274
+ }
275
+
276
+ .icon-arrow-right-line:before {
277
+ content: "\e843";
278
+ }
279
+
280
+ .icon-reply-fill:before {
281
+ content: "\e6e7";
282
+ }
283
+
284
+ .icon-form-line:before {
285
+ content: "\e669";
286
+ }
287
+
288
+ .icon-setting-line:before {
289
+ content: "\e66a";
290
+ }
291
+
292
+ .icon-phone-call-line:before {
293
+ content: "\e6c8";
294
+ }
295
+
296
+ .icon-mail-send-line:before {
297
+ content: "\e6dc";
298
+ }
299
+
300
+ .icon-address-book-line:before {
301
+ content: "\e66b";
302
+ }
303
+
304
+ .icon-import-file-line:before {
305
+ content: "\e66d";
306
+ }
307
+
308
+ .icon-file-copy-2-line:before {
309
+ content: "\e766";
310
+ }
311
+
312
+ .icon-timeline-line:before {
313
+ content: "\e696";
314
+ }
315
+
316
+ .icon-share-box-line:before {
317
+ content: "\e871";
318
+ }
319
+
320
+ .icon-timer-2-line:before {
321
+ content: "\e87b";
322
+ }
323
+
324
+ .icon-wechat-moments-line:before {
325
+ content: "\e66c";
326
+ }
327
+
328
+ .icon-links-line:before {
329
+ content: "\e6d7";
330
+ }
331
+
332
+ .icon-align-left:before {
333
+ content: "\e791";
334
+ }
335
+
336
+ .icon-install-line:before {
337
+ content: "\e743";
338
+ }
339
+
340
+ .icon-emoji-fill:before {
341
+ content: "\e6f3";
342
+ }
343
+
344
+ .icon-service-line:before {
345
+ content: "\e6e9";
346
+ }
347
+
348
+ .icon-list-settings-line:before {
349
+ content: "\e85c";
350
+ }
351
+
352
+ .icon-settings-6-line:before {
353
+ content: "\e872";
354
+ }
355
+
356
+ .icon-artboard-2-line:before {
357
+ content: "\e701";
358
+ }
359
+
360
+ .icon-fence-line:before {
361
+ content: "\e9f7";
362
+ }
363
+
364
+ .icon-focus-3-line:before {
365
+ content: "\e70e";
366
+ }
367
+
368
+ .icon-shape-2-line:before {
369
+ content: "\e724";
370
+ }
371
+
372
+ .icon-save-line:before {
373
+ content: "\e74c";
374
+ }
375
+
376
+ .icon-edit-box-line:before {
377
+ content: "\e70b";
378
+ }
379
+
380
+ .icon-indeterminate-circle-line:before {
381
+ content: "\e85d";
382
+ }
383
+
384
+ .icon-overview-trade-line:before {
385
+ content: "\e7cb";
386
+ }
387
+
388
+ .icon-overview-backup-line:before {
389
+ content: "\e66e";
390
+ }
391
+
392
+ .icon-overview-motion-line:before {
393
+ content: "\e66f";
394
+ }
395
+
396
+ .icon-mark-pen-line:before {
397
+ content: "\e71b";
398
+ }
399
+
400
+ .icon-home-5-line:before {
401
+ content: "\e6b4";
402
+ }
403
+
404
+ .icon-bar-chart-2-line:before {
405
+ content: "\e6c0";
406
+ }
407
+
408
+ .icon-smartphone-line:before {
409
+ content: "\e754";
410
+ }
411
+
412
+ .icon-apps-line:before {
413
+ content: "\e83e";
414
+ }
415
+
416
+ .icon-shield-flash-line:before {
417
+ content: "\e877";
418
+ }
419
+
420
+ .icon-zoom-out-line:before {
421
+ content: "\e87d";
422
+ }
423
+
424
+ .icon-zoom-in-line:before {
425
+ content: "\e87e";
426
+ }
427
+
428
+ .icon-inbox-line:before {
429
+ content: "\e6d4";
430
+ }
431
+
432
+ .icon-code-line:before {
433
+ content: "\e72c";
434
+ }
435
+
436
+ .icon-lock-password-line:before {
437
+ content: "\e85f";
438
+ }
439
+
440
+ .icon-user-line:before {
441
+ content: "\e88c";
442
+ }
443
+
444
+ .icon-global-line:before {
445
+ content: "\e6d3";
446
+ }
447
+
448
+ .icon-translate-2:before {
449
+ content: "\e7aa";
450
+ }
451
+
452
+ .icon-miniprogram-line:before {
453
+ content: "\e799";
454
+ }
455
+
456
+ .icon-usb-line:before {
457
+ content: "\e758";
458
+ }
459
+
460
+ .icon-gift-line:before {
461
+ content: "\e7b2";
462
+ }
463
+
464
+ .icon-other-line:before {
465
+ content: "\e603";
466
+ }
467
+
468
+ .icon-customer-line:before {
469
+ content: "\e670";
470
+ }
471
+
472
+ .icon-arrow-down-s-fill:before {
473
+ content: "\e840";
474
+ }
475
+
476
+ .icon-notice-board-line:before {
477
+ content: "\e671";
478
+ }
479
+
480
+ .icon-swap-box-line:before {
481
+ content: "\e7ba";
482
+ }
483
+
484
+ .icon-question-answer-line:before {
485
+ content: "\e6fc";
486
+ }
487
+
488
+ .icon-at-line:before {
489
+ content: "\e6bf";
490
+ }
491
+
492
+ .icon-add-circle-fill:before {
493
+ content: "\e839";
494
+ }
495
+
496
+ .icon-indeterminate-circle-fill:before {
497
+ content: "\e85b";
498
+ }
499
+
500
+ .icon-user-add-line:before {
501
+ content: "\e88b";
502
+ }
503
+
504
+ .icon-activity-line:before {
505
+ content: "\e672";
506
+ }
507
+
508
+ .icon-follow-line:before {
509
+ content: "\e673";
510
+ }
511
+
512
+ .icon-bonus-line:before {
513
+ content: "\e675";
514
+ }
515
+
516
+ .icon-application:before {
517
+ content: "\e69e";
518
+ }
519
+
520
+ .icon-app:before {
521
+ content: "\e6d5";
522
+ }
523
+
524
+ .icon-device-app-fill:before {
525
+ content: "\e674";
526
+ }
527
+
528
+ .icon-call-phone-fill:before {
529
+ content: "\e678";
530
+ }
531
+
532
+ .icon-device-base-fill:before {
533
+ content: "\e677";
534
+ }
535
+
536
+ .icon-view-fill:before {
537
+ content: "\e679";
538
+ }
539
+
540
+ .icon-share-fill:before {
541
+ content: "\e67a";
542
+ }
543
+
544
+ .icon-edit-fill:before {
545
+ content: "\e67b";
546
+ }
547
+
548
+ .icon-download-fill:before {
549
+ content: "\e6c1";
550
+ }
551
+
552
+ .icon-contact-line:before {
553
+ content: "\e67c";
554
+ }
555
+
556
+ .icon-wifi-off-line:before {
557
+ content: "\e6cd";
558
+ }
559
+
560
+ .icon-radar-line:before {
561
+ content: "\ea05";
562
+ }
563
+
564
+ .icon-move1:before {
565
+ content: "\e746";
566
+ }
567
+
568
+ .icon-arrow-down-line:before {
569
+ content: "\e75e";
570
+ }
571
+
572
+ .icon-arrow-up-line:before {
573
+ content: "\e76a";
574
+ }
575
+
576
+ .icon-qunzuduoren:before {
577
+ content: "\e6d6";
578
+ }
579
+
580
+ .icon-recycle-line:before {
581
+ content: "\e9a7";
582
+ }
583
+
584
+ .icon-user-assign-line:before {
585
+ content: "\e67f";
586
+ }
587
+
588
+ .icon-information-line:before {
589
+ content: "\e8b9";
590
+ }
591
+
592
+ .icon-main-scrm-fill:before {
593
+ content: "\e680";
594
+ }
595
+
596
+ .icon-main-home-fill:before {
597
+ content: "\e682";
598
+ }
599
+
600
+ .icon-main-device-fill:before {
601
+ content: "\e683";
602
+ }
603
+
604
+ .icon-main-risk-fill:before {
605
+ content: "\e684";
606
+ }
607
+
608
+ .icon-main-app-fill:before {
609
+ content: "\e685";
610
+ }
611
+
612
+ .icon-main-chart-fill:before {
613
+ content: "\e686";
614
+ }
615
+
616
+ .icon-main-setting-fill:before {
617
+ content: "\e687";
618
+ }
619
+
620
+ .icon-question-fill:before {
621
+ content: "\e998";
622
+ }
623
+
624
+ .icon-price-tag-3-line:before {
625
+ content: "\e988";
626
+ }
627
+
628
+ .icon-arrow-left-circle-line:before {
629
+ content: "\e763";
630
+ }
631
+
632
+ .icon-message-2-line:before {
633
+ content: "\e912";
634
+ }
635
+
636
+ .icon-phone-line1:before {
637
+ content: "\e96c";
638
+ }
639
+
640
+ .icon-wework-line:before {
641
+ content: "\e68a";
642
+ }
643
+
644
+ .icon-delete-back-2-fill:before {
645
+ content: "\e7d4";
646
+ }
647
+
648
+ .icon-share-line:before {
649
+ content: "\ea0e";
650
+ }
651
+
652
+ .icon-followup-line:before {
653
+ content: "\e68b";
654
+ }
655
+
656
+ .icon-file-gif-line:before {
657
+ content: "\e828";
658
+ }
659
+
660
+ .icon-file-text-line:before {
661
+ content: "\e83a";
662
+ }
663
+
664
+ .icon-fire-fill:before {
665
+ content: "\e68c";
666
+ }
667
+
668
+ .icon-user-edit-line:before {
669
+ content: "\e690";
670
+ }
671
+
672
+ .icon-file-edit-line:before {
673
+ content: "\e68d";
674
+ }
675
+
676
+ .icon-follow-edit-line:before {
677
+ content: "\e68e";
678
+ }
679
+
680
+ .icon-customer-export-line:before {
681
+ content: "\e68f";
682
+ }
683
+
684
+ .icon-profile-line:before {
685
+ content: "\e748";
686
+ }
687
+
688
+ .icon-qr-code-line:before {
689
+ content: "\e993";
690
+ }
691
+
692
+ .icon-align-bottom:before {
693
+ content: "\e757";
694
+ }
695
+
696
+ .icon-align-center:before {
697
+ content: "\e759";
698
+ }
699
+
700
+ .icon-align-left1:before {
701
+ content: "\e75a";
702
+ }
703
+
704
+ .icon-align-vertically:before {
705
+ content: "\e75b";
706
+ }
707
+
708
+ .icon-align-right:before {
709
+ content: "\e75c";
710
+ }
711
+
712
+ .icon-align-top:before {
713
+ content: "\e75d";
714
+ }
715
+
716
+ .icon-layout-bottom-2-line:before {
717
+ content: "\e8c5";
718
+ }
719
+
720
+ .icon-picture-in-picture-2-line:before {
721
+ content: "\e96e";
722
+ }
723
+
724
+ .icon-picture-in-picture-exit-line:before {
725
+ content: "\e96f";
726
+ }
727
+
728
+ .icon-picture-in-picture-line:before {
729
+ content: "\e970";
730
+ }
731
+
732
+ .icon-plugin-fill:before {
733
+ content: "\e600";
734
+ }
735
+
736
+ .icon-alert-fill:before {
737
+ content: "\e75f";
738
+ }
739
+
740
+ .icon-emotion-happy-line:before {
741
+ content: "\e800";
742
+ }
743
+
744
+ .icon-palette-line:before {
745
+ content: "\e953";
746
+ }
747
+
748
+ .icon-mail-send-line1:before {
749
+ content: "\e742";
750
+ }
751
+
752
+ .icon-subtract-line:before {
753
+ content: "\ea7a";
754
+ }
755
+
756
+ .icon-device-offline-line:before {
757
+ content: "\e89a";
758
+ }
759
+
760
+ .icon-device-online-line:before {
761
+ content: "\e89d";
762
+ }
763
+
764
+ .icon-send-task-line:before {
765
+ content: "\e691";
766
+ }
767
+
768
+ .icon-approve-line:before {
769
+ content: "\e693";
770
+ }
771
+
772
+ .icon-chengjiaoxinxi_lan:before {
773
+ content: "\e694";
774
+ }
775
+
776
+ .icon-download-cloud-line:before {
777
+ content: "\e7e9";
778
+ }
779
+
780
+ .icon-add-circle-line:before {
781
+ content: "\e605";
782
+ }
783
+
784
+ .icon-stop-line:before {
785
+ content: "\e606";
786
+ }
787
+
788
+ .icon-arrow-down:before {
789
+ content: "\e607";
790
+ }
791
+
792
+ .icon-arrow-right:before {
793
+ content: "\e608";
794
+ }
795
+
796
+ .icon-arrow-left:before {
797
+ content: "\e60a";
798
+ }
799
+
800
+ .icon-app-auth-line:before {
801
+ content: "\e60b";
802
+ }
803
+
804
+ .icon-arrow-up:before {
805
+ content: "\e60c";
806
+ }
807
+
808
+ .icon-bumen:before {
809
+ content: "\e60d";
810
+ }
811
+
812
+ .icon-checkbox-circle-line:before {
813
+ content: "\e60e";
814
+ }
815
+
816
+ .icon-barcode:before {
817
+ content: "\e60f";
818
+ }
819
+
820
+ .icon-company-line:before {
821
+ content: "\e610";
822
+ }
823
+
824
+ .icon-clear:before {
825
+ content: "\e611";
826
+ }
827
+
828
+ .icon-brush-line:before {
829
+ content: "\e612";
830
+ }
831
+
832
+ .icon-app-install-line:before {
833
+ content: "\e613";
834
+ }
835
+
836
+ .icon-error-warning-line:before {
837
+ content: "\e615";
838
+ }
839
+
840
+ .icon-camera-line:before {
841
+ content: "\e616";
842
+ }
843
+
844
+ .icon-error:before {
845
+ content: "\e617";
846
+ }
847
+
848
+ .icon-close-circle-line:before {
849
+ content: "\e618";
850
+ }
851
+
852
+ .icon-calendar:before {
853
+ content: "\e61a";
854
+ }
855
+
856
+ .icon-attachment-line:before {
857
+ content: "\e61b";
858
+ }
859
+
860
+ .icon-del-trash-line:before {
861
+ content: "\e61d";
862
+ }
863
+
864
+ .icon-base-station-line:before {
865
+ content: "\e61e";
866
+ }
867
+
868
+ .icon-filter-line:before {
869
+ content: "\e61f";
870
+ }
871
+
872
+ .icon-cloud-off-line:before {
873
+ content: "\e620";
874
+ }
875
+
876
+ .icon-file-export-line:before {
877
+ content: "\e621";
878
+ }
879
+
880
+ .icon-eye-close-line:before {
881
+ content: "\e622";
882
+ }
883
+
884
+ .icon-fullscreen:before {
885
+ content: "\e623";
886
+ }
887
+
888
+ .icon-device-manage:before {
889
+ content: "\e624";
890
+ }
891
+
892
+ .icon-filter--line:before {
893
+ content: "\e625";
894
+ }
895
+
896
+ .icon-image-error-line:before {
897
+ content: "\e626";
898
+ }
899
+
900
+ .icon-device:before {
901
+ content: "\e627";
902
+ }
903
+
904
+ .icon-edit--line:before {
905
+ content: "\e628";
906
+ }
907
+
908
+ .icon-eye-line:before {
909
+ content: "\e629";
910
+ }
911
+
912
+ .icon-device-bind:before {
913
+ content: "\e62a";
914
+ }
915
+
916
+ .icon-eye-off-line:before {
917
+ content: "\e62b";
918
+ }
919
+
920
+ .icon-install-app-line:before {
921
+ content: "\e62c";
922
+ }
923
+
924
+ .icon-group-control:before {
925
+ content: "\e62d";
926
+ }
927
+
928
+ .icon-lightbulb-line:before {
929
+ content: "\e62f";
930
+ }
931
+
932
+ .icon-import-line:before {
933
+ content: "\e630";
934
+ }
935
+
936
+ .icon-image-line:before {
937
+ content: "\e631";
938
+ }
939
+
940
+ .icon-folder-fill:before {
941
+ content: "\e632";
942
+ }
943
+
944
+ .icon-lock:before {
945
+ content: "\e633";
946
+ }
947
+
948
+ .icon-lock-unlock:before {
949
+ content: "\e634";
950
+ }
951
+
952
+ .icon-menu-fill:before {
953
+ content: "\e635";
954
+ }
955
+
956
+ .icon-link-unlink-m:before {
957
+ content: "\e636";
958
+ }
959
+
960
+ .icon-log-line:before {
961
+ content: "\e637";
962
+ }
963
+
964
+ .icon-microphone-line:before {
965
+ content: "\e638";
966
+ }
967
+
968
+ .icon-mic-line:before {
969
+ content: "\e639";
970
+ }
971
+
972
+ .icon-more-line:before {
973
+ content: "\e63a";
974
+ }
975
+
976
+ .icon-mobile-app-line:before {
977
+ content: "\e63b";
978
+ }
979
+
980
+ .icon-module-data-manage:before {
981
+ content: "\e63c";
982
+ }
983
+
984
+ .icon-music--line:before {
985
+ content: "\e63d";
986
+ }
987
+
988
+ .icon-notification:before {
989
+ content: "\e63e";
990
+ }
991
+
992
+ .icon-module-organize:before {
993
+ content: "\e63f";
994
+ }
995
+
996
+ .icon-organize-fill:before {
997
+ content: "\e640";
998
+ }
999
+
1000
+ .icon-play-line:before {
1001
+ content: "\e642";
1002
+ }
1003
+
1004
+ .icon-restart-line:before {
1005
+ content: "\e643";
1006
+ }
1007
+
1008
+ .icon-notice-line:before {
1009
+ content: "\e644";
1010
+ }
1011
+
1012
+ .icon-phone-line:before {
1013
+ content: "\e645";
1014
+ }
1015
+
1016
+ .icon-question:before {
1017
+ content: "\e646";
1018
+ }
1019
+
1020
+ .icon-phone-call-fill:before {
1021
+ content: "\e647";
1022
+ }
1023
+
1024
+ .icon-send-line:before {
1025
+ content: "\e648";
1026
+ }
1027
+
1028
+ .icon-pen-edit-line:before {
1029
+ content: "\e649";
1030
+ }
1031
+
1032
+ .icon-phone:before {
1033
+ content: "\e64a";
1034
+ }
1035
+
1036
+ .icon-software-line:before {
1037
+ content: "\e64b";
1038
+ }
1039
+
1040
+ .icon-update-line:before {
1041
+ content: "\e64c";
1042
+ }
1043
+
1044
+ .icon-success:before {
1045
+ content: "\e64d";
1046
+ }
1047
+
1048
+ .icon-shouye:before {
1049
+ content: "\e64e";
1050
+ }
1051
+
1052
+ .icon-user:before {
1053
+ content: "\e64f";
1054
+ }
1055
+
1056
+ .icon-sousuo:before {
1057
+ content: "\e650";
1058
+ }
1059
+
1060
+ .icon-shujufenxi-line:before {
1061
+ content: "\e651";
1062
+ }
1063
+
1064
+ .icon-synch-line:before {
1065
+ content: "\e652";
1066
+ }
1067
+
1068
+ .icon-unbind-line:before {
1069
+ content: "\e653";
1070
+ }
1071
+
1072
+ .icon-voice-line:before {
1073
+ content: "\e654";
1074
+ }
1075
+
1076
+ .icon-vidicon-line:before {
1077
+ content: "\e655";
1078
+ }
1079
+
1080
+ .icon-shezhi:before {
1081
+ content: "\e656";
1082
+ }
1083
+
1084
+ .icon-settings--line:before {
1085
+ content: "\e657";
1086
+ }
1087
+
1088
+ .icon-weixinpengyouquan-line:before {
1089
+ content: "\e658";
1090
+ }
1091
+
1092
+ .icon-user-group:before {
1093
+ content: "\e659";
1094
+ }
1095
+
1096
+ .icon-user-help:before {
1097
+ content: "\e65a";
1098
+ }
1099
+
1100
+ .icon-webcam-line:before {
1101
+ content: "\e65b";
1102
+ }
1103
+
1104
+ .icon-user-guide:before {
1105
+ content: "\e65c";
1106
+ }
1107
+
1108
+ .icon-system-app-line:before {
1109
+ content: "\e65d";
1110
+ }
1111
+
1112
+ .icon-weixinfengkong-line:before {
1113
+ content: "\e65e";
1114
+ }
1115
+
1116
+ .icon-volume-up-line:before {
1117
+ content: "\e65f";
1118
+ }
1119
+
1120
+ .icon-weixinhaoyou-line:before {
1121
+ content: "\e660";
1122
+ }
1123
+
1124
+ .icon-building-2-fill:before {
1125
+ content: "\e6b1";
1126
+ }
1127
+
1128
+ .icon-time-fill:before {
1129
+ content: "\e87b";
1130
+ }
1131
+
1132
+ .icon-group-fill:before {
1133
+ content: "\e883";
1134
+ }
1135
+
1136
+ .icon-more-2-line:before {
1137
+ content: "\e868";
1138
+ }
1139
+
1140
+ .icon-arrow-up-down-line:before {
1141
+ content: "\e845";
1142
+ }
1143
+
1144
+ .icon-checkbox-multiple-blank-line:before {
1145
+ content: "\e7a9";
1146
+ }
1147
+
1148
+ .icon-assign-line:before {
1149
+ content: "\e676";
1150
+ }
1151
+
1152
+ .icon-reply-line:before {
1153
+ content: "\e6ea";
1154
+ }
1155
+
1156
+ .icon-anticlockwise-2-line:before {
1157
+ content: "\e700";
1158
+ }
1159
+
1160
+ .icon-arrow-left-right-fill:before {
1161
+ content: "\e841";
1162
+ }
1163
+
1164
+ .icon-settings-4-line:before {
1165
+ content: "\e870";
1166
+ }
1167
+
1168
+ .icon-add-line:before {
1169
+ content: "\e604";
1170
+ }
1171
+
1172
+ .icon-delete-bin-line:before {
1173
+ content: "\e614";
1174
+ }
1175
+
1176
+ .icon-equalizer-line:before {
1177
+ content: "\e619";
1178
+ }
1179
+
1180
+ .icon-clue-line:before {
1181
+ content: "\e6b2";
1182
+ }
1183
+
1184
+ .icon-user-2-fill:before {
1185
+ content: "\e887";
1186
+ }
1187
+
1188
+ .icon-add-circle-line1:before {
1189
+ content: "\e83b";
1190
+ }
1191
+
1192
+ .icon-checkbox-circle-fill:before {
1193
+ content: "\e848";
1194
+ }
1195
+
1196
+ .icon-close-circle-fill:before {
1197
+ content: "\e84a";
1198
+ }
1199
+
1200
+ .icon-waring-line:before {
1201
+ content: "\e67e";
1202
+ }
1203
+
1204
+ .icon-checkbox-circle-line1:before {
1205
+ content: "\e84b";
1206
+ }
1207
+
1208
+ .icon-close-circle-line1:before {
1209
+ content: "\e84c";
1210
+ }
1211
+
1212
+ .icon-remind-line:before {
1213
+ content: "\e67d";
1214
+ }
1215
+
1216
+ .icon-time-line:before {
1217
+ content: "\e87f";
1218
+ }
1219
+
1220
+ .icon-app-setting:before {
1221
+ content: "\e609";
1222
+ }
1223
+
1224
+ .icon-pause-line:before {
1225
+ content: "\e80d";
1226
+ }
1227
+
1228
+ .icon-play-line1:before {
1229
+ content: "\e810";
1230
+ }
1231
+
1232
+ .icon-stop-circle-line:before {
1233
+ content: "\e81d";
1234
+ }
1235
+
1236
+ .icon-stop-line1:before {
1237
+ content: "\e81e";
1238
+ }
1239
+
1240
+ .icon-download-line:before {
1241
+ content: "\e61c";
1242
+ }
1243
+
1244
+ .icon-follow-today-line:before {
1245
+ content: "\e681";
1246
+ }
1247
+
1248
+ .icon-follow-task-line:before {
1249
+ content: "\e688";
1250
+ }
1251
+
1252
+ .icon-follow-dealt-line:before {
1253
+ content: "\e689";
1254
+ }
1255
+
1256
+ .icon-voice-text-line:before {
1257
+ content: "\e756";
1258
+ }
1259
+
1260
+ .icon-loading:before {
1261
+ content: "\e62e";
1262
+ }
1263
+
1264
+ .icon-refresh-line:before {
1265
+ content: "\e641";
1266
+ }
1267
+
1268
+ .icon-eye-line1:before {
1269
+ content: "\e811";
1270
+ }
1271
+
1272
+ .icon-switch-line:before {
1273
+ content: "\e692";
1274
+ }
1275
+