@bit-sun/business-component 2.3.22-beta9 → 2.3.23-beta01

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 (206) hide show
  1. package/.editorconfig +16 -16
  2. package/.fatherrc.ts +5 -5
  3. package/.gitlab-ci.yml +179 -179
  4. package/.prettierignore +7 -7
  5. package/.prettierrc +11 -11
  6. package/.umirc.ts +74 -74
  7. package/README.md +27 -27
  8. package/dist/components/Business/JsonQueryTable/static.d.ts +2 -0
  9. package/dist/components/Solution/RuleComponent/InnerSelect.d.ts +12 -0
  10. package/dist/index.esm.js +1129 -580
  11. package/dist/index.js +1130 -580
  12. package/dist/utils/CustomLoginInfo.d.ts +11 -0
  13. package/dist/utils/LocalstorageUtils.d.ts +0 -5
  14. package/dist/utils/requestUtils.d.ts +28 -0
  15. package/dist/utils/utils.d.ts +0 -6
  16. package/dist 2/components/Business/BsLayouts/Components/CustomerMenu/MenuSetting/index.d.ts +4 -0
  17. package/dist 2/components/Business/BsLayouts/Components/CustomerMenu/globalMenu/DrawContent.d.ts +4 -0
  18. package/dist 2/components/Business/BsLayouts/Components/CustomerMenu/globalMenu/customMenuHeader.d.ts +3 -0
  19. package/docs/index.md +21 -21
  20. package/lib/assets/drag.svg +17 -17
  21. package/lib/assets/exportFail.svg +37 -37
  22. package/lib/assets/exportProcessing.svg +28 -28
  23. package/lib/assets/exportSuccess.svg +34 -34
  24. package/lib/assets/label_icon_bottom.svg +25 -25
  25. package/lib/assets/upExport.svg +22 -22
  26. package/package.json +79 -78
  27. package/src/assets/32.svg +27 -27
  28. package/src/assets/addIcon.svg +17 -17
  29. package/src/assets/allfunc.svg +27 -27
  30. package/src/assets/arrowRight.svg +24 -24
  31. package/src/assets/btn-delete.svg +29 -29
  32. package/src/assets/btn-edit.svg +19 -19
  33. package/src/assets/btn-more.svg +17 -17
  34. package/src/assets/btn-submit.svg +19 -19
  35. package/src/assets/caidan.svg +11 -11
  36. package/src/assets/close.svg +26 -26
  37. package/src/assets/drag.svg +17 -17
  38. package/src/assets/exportFail.svg +37 -37
  39. package/src/assets/exportProcessing.svg +28 -28
  40. package/src/assets/exportSuccess.svg +34 -34
  41. package/src/assets/fixed-left-active.svg +11 -11
  42. package/src/assets/fixed-left.svg +15 -15
  43. package/src/assets/fixed-right-active.svg +11 -11
  44. package/src/assets/fixed-right.svg +15 -15
  45. package/src/assets/guanbi.svg +15 -15
  46. package/src/assets/icon-quanping.svg +15 -15
  47. package/src/assets/icon-shezhi.svg +17 -17
  48. package/src/assets/label_icon_bottom.svg +25 -25
  49. package/src/assets/list-no-img.svg +21 -21
  50. package/src/assets/morentouxiang-32.svg +23 -23
  51. package/src/assets/scanning.svg +24 -24
  52. package/src/assets/upExport.svg +22 -22
  53. package/src/common/ENUM.ts +41 -41
  54. package/src/components/Business/AddSelectBusiness/index.md +162 -162
  55. package/src/components/Business/AddSelectBusiness/index.tsx +1061 -1060
  56. package/src/components/Business/BsLayouts/Components/AllFunc/drawContent.tsx +111 -111
  57. package/src/components/Business/BsLayouts/Components/AllFunc/index.less +153 -153
  58. package/src/components/Business/BsLayouts/Components/AllFunc/index.tsx +70 -70
  59. package/src/components/Business/BsLayouts/Components/CustomerMenu/MenuSetting/index.less +90 -90
  60. package/src/components/Business/BsLayouts/Components/CustomerMenu/MenuSetting/index.tsx +37 -37
  61. package/src/components/Business/BsLayouts/Components/CustomerMenu/MenuSetting/leftTree.tsx +242 -242
  62. package/src/components/Business/BsLayouts/Components/CustomerMenu/MenuSetting/rightTree.tsx +384 -384
  63. package/src/components/Business/BsLayouts/Components/CustomerMenu/globalMenu/DrawContent.tsx +285 -285
  64. package/src/components/Business/BsLayouts/Components/CustomerMenu/globalMenu/customMenuHeader.tsx +74 -74
  65. package/src/components/Business/BsLayouts/Components/CustomerMenu/globalMenu/drawContent.less +170 -170
  66. package/src/components/Business/BsLayouts/Components/CustomerMenu/index.less +64 -64
  67. package/src/components/Business/BsLayouts/Components/CustomerMenu/index.tsx +153 -153
  68. package/src/components/Business/BsLayouts/Components/GlobalHeader/index.less +72 -72
  69. package/src/components/Business/BsLayouts/Components/GlobalHeader/index.tsx +157 -157
  70. package/src/components/Business/BsLayouts/Components/RightContent/LoginModal.tsx +85 -85
  71. package/src/components/Business/BsLayouts/Components/RightContent/home.less +218 -218
  72. package/src/components/Business/BsLayouts/Components/RightContent/index.tsx +155 -155
  73. package/src/components/Business/BsLayouts/Components/SearchFunc/index.less +160 -160
  74. package/src/components/Business/BsLayouts/Components/SearchFunc/index.tsx +75 -75
  75. package/src/components/Business/BsLayouts/index.less +79 -79
  76. package/src/components/Business/BsLayouts/index.tsx +1484 -1484
  77. package/src/components/Business/BsLayouts/service.ts +10 -10
  78. package/src/components/Business/BsLayouts/utils.tsx +203 -203
  79. package/src/components/Business/BsSulaQueryTable/SearchItemSetting.tsx +566 -565
  80. package/src/components/Business/BsSulaQueryTable/index.less +221 -221
  81. package/src/components/Business/BsSulaQueryTable/index.tsx +538 -531
  82. package/src/components/Business/BsSulaQueryTable/setting.tsx +854 -853
  83. package/src/components/Business/BsSulaQueryTable/utils.less +65 -65
  84. package/src/components/Business/BsSulaQueryTable/utils.tsx +690 -690
  85. package/src/components/Business/CommodityEntry/index.md +70 -70
  86. package/src/components/Business/CommodityEntry/index.tsx +80 -80
  87. package/src/components/Business/CommonAlert/index.tsx +23 -23
  88. package/src/components/Business/CommonGuideWrapper/index.less +111 -111
  89. package/src/components/Business/CommonGuideWrapper/index.md +39 -39
  90. package/src/components/Business/CommonGuideWrapper/index.tsx +83 -83
  91. package/src/components/Business/DetailPageWrapper/index.less +79 -79
  92. package/src/components/Business/DetailPageWrapper/index.tsx +313 -313
  93. package/src/components/Business/DetailPageWrapper/utils.tsx +100 -100
  94. package/src/components/Business/HomePageWrapper/index.less +33 -33
  95. package/src/components/Business/HomePageWrapper/index.md +45 -45
  96. package/src/components/Business/HomePageWrapper/index.tsx +162 -162
  97. package/src/components/Business/JsonQueryTable/components/FieldsModifyModal.tsx +824 -824
  98. package/src/components/Business/JsonQueryTable/components/FieldsSettingsTable.tsx +205 -205
  99. package/src/components/Business/JsonQueryTable/components/Formula.tsx +206 -205
  100. package/src/components/Business/JsonQueryTable/components/MaintainOptions.tsx +127 -127
  101. package/src/components/Business/JsonQueryTable/configButton/index.js +20 -20
  102. package/src/components/Business/JsonQueryTable/configTree/component/compactArrayView.js +25 -25
  103. package/src/components/Business/JsonQueryTable/configTree/component/compactObjectView.js +30 -30
  104. package/src/components/Business/JsonQueryTable/configTree/index.js +82 -82
  105. package/src/components/Business/JsonQueryTable/configTree/index.less +44 -44
  106. package/src/components/Business/JsonQueryTable/configTree/parser/highlight.js +57 -57
  107. package/src/components/Business/JsonQueryTable/configTree/parser/index.js +124 -124
  108. package/src/components/Business/JsonQueryTable/configTree/render/iconRender.js +29 -29
  109. package/src/components/Business/JsonQueryTable/configTree/render/nameRender.js +22 -22
  110. package/src/components/Business/JsonQueryTable/configTree/treeNode.js +116 -116
  111. package/src/components/Business/JsonQueryTable/drawer/index.tsx +12 -12
  112. package/src/components/Business/JsonQueryTable/function.ts +62 -62
  113. package/src/components/Business/JsonQueryTable/index.less +16 -16
  114. package/src/components/Business/JsonQueryTable/index.md +328 -328
  115. package/src/components/Business/JsonQueryTable/index.tsx +537 -535
  116. package/src/components/Business/JsonQueryTable/jsonEditor/index.js +346 -346
  117. package/src/components/Business/JsonQueryTable/jsonEditor/index.less +22 -22
  118. package/src/components/Business/JsonQueryTable/jsonEditor/lint/basicType.js +147 -147
  119. package/src/components/Business/JsonQueryTable/jsonEditor/lint/index.js +389 -389
  120. package/src/components/Business/JsonQueryTable/jsonEditor/suggestions/actions.js +118 -118
  121. package/src/components/Business/JsonQueryTable/jsonEditor/suggestions/dependency.js +22 -22
  122. package/src/components/Business/JsonQueryTable/jsonEditor/suggestions/index.js +21 -21
  123. package/src/components/Business/JsonQueryTable/jsonEditor/suggestions/request.js +65 -65
  124. package/src/components/Business/JsonQueryTable/static.ts +426 -390
  125. package/src/components/Business/SearchSelect/BusinessUtils.ts +1836 -1762
  126. package/src/components/Business/SearchSelect/common.ts +75 -75
  127. package/src/components/Business/SearchSelect/index.md +1387 -1329
  128. package/src/components/Business/SearchSelect/index.tsx +55 -55
  129. package/src/components/Business/SearchSelect/utils.ts +101 -100
  130. package/src/components/Business/StateFlow/index.less +130 -130
  131. package/src/components/Business/StateFlow/index.md +60 -60
  132. package/src/components/Business/StateFlow/index.tsx +29 -29
  133. package/src/components/Business/TreeSearchSelect/index.md +185 -156
  134. package/src/components/Business/TreeSearchSelect/index.tsx +33 -33
  135. package/src/components/Business/TreeSearchSelect/utils.ts +104 -75
  136. package/src/components/Business/columnSettingTable/columnSetting.tsx +766 -766
  137. package/src/components/Business/columnSettingTable/index.less +247 -247
  138. package/src/components/Business/columnSettingTable/index.md +357 -357
  139. package/src/components/Business/columnSettingTable/index.tsx +234 -233
  140. package/src/components/Business/columnSettingTable/sulaSettingTable.tsx +242 -241
  141. package/src/components/Business/columnSettingTable/utils.tsx +71 -71
  142. package/src/components/Business/moreTreeTable/FixedScrollBar.tsx +87 -87
  143. package/src/components/Business/moreTreeTable/hooks/useSticky.ts +21 -21
  144. package/src/components/Business/moreTreeTable/index.less +99 -99
  145. package/src/components/Business/moreTreeTable/index.md +448 -448
  146. package/src/components/Business/moreTreeTable/index.tsx +387 -387
  147. package/src/components/Business/moreTreeTable/utils.ts +126 -126
  148. package/src/components/Functional/AddSelect/helps.ts +80 -79
  149. package/src/components/Functional/AddSelect/index.less +367 -367
  150. package/src/components/Functional/AddSelect/index.md +155 -155
  151. package/src/components/Functional/AddSelect/index.tsx +1171 -1170
  152. package/src/components/Functional/BillEntry/index.less +371 -371
  153. package/src/components/Functional/BillEntry/index.md +39 -39
  154. package/src/components/Functional/BillEntry/index.tsx +773 -772
  155. package/src/components/Functional/BsAntdSula/BsCascader/index.md +62 -62
  156. package/src/components/Functional/BsAntdSula/BsCascader/index.tsx +178 -178
  157. package/src/components/Functional/BsAntdSula/index.ts +2 -2
  158. package/src/components/Functional/DataImport/index.less +63 -63
  159. package/src/components/Functional/DataImport/index.md +44 -44
  160. package/src/components/Functional/DataImport/index.tsx +696 -695
  161. package/src/components/Functional/DataValidation/index.less +63 -63
  162. package/src/components/Functional/DataValidation/index.md +39 -39
  163. package/src/components/Functional/DataValidation/index.tsx +688 -687
  164. package/src/components/Functional/EllipsisTooltip/index.d.ts +5 -5
  165. package/src/components/Functional/EllipsisTooltip/index.js +36 -36
  166. package/src/components/Functional/EllipsisTooltip/index.md +30 -30
  167. package/src/components/Functional/ExportFunctions/ExportIcon/index.md +37 -37
  168. package/src/components/Functional/ExportFunctions/ExportIcon/index.tsx +60 -59
  169. package/src/components/Functional/QueryMutipleInput/index.less +37 -37
  170. package/src/components/Functional/QueryMutipleInput/index.md +33 -33
  171. package/src/components/Functional/QueryMutipleInput/index.tsx +128 -128
  172. package/src/components/Functional/SearchSelect/index.less +115 -115
  173. package/src/components/Functional/SearchSelect/index.md +141 -141
  174. package/src/components/Functional/SearchSelect/index.tsx +885 -879
  175. package/src/components/Functional/SearchSelect/utils.ts +3 -3
  176. package/src/components/Functional/TreeSearchSelect/index.md +47 -47
  177. package/src/components/Functional/TreeSearchSelect/index.tsx +201 -199
  178. package/src/components/Solution/RuleComponent/Formula.tsx +335 -335
  179. package/src/components/Solution/RuleComponent/InnerSelect.tsx +62 -0
  180. package/src/components/Solution/RuleComponent/index.d.ts +29 -29
  181. package/src/components/Solution/RuleComponent/index.js +2073 -2032
  182. package/src/components/Solution/RuleComponent/index.less +230 -230
  183. package/src/components/Solution/RuleComponent/renderSpecificAction.js +99 -99
  184. package/src/components/Solution/RuleComponent/ruleFiled.js +2281 -2107
  185. package/src/components/Solution/RuleComponent/services.ts +13 -13
  186. package/src/components/Solution/RuleComponent/util.js +143 -139
  187. package/src/index.ts +38 -38
  188. package/src/plugin/TableColumnSetting/index.less +247 -247
  189. package/src/plugin/TableColumnSetting/index.md +50 -50
  190. package/src/plugin/TableColumnSetting/index.tsx +725 -725
  191. package/src/plugin/TableColumnSetting/utils.ts +19 -19
  192. package/src/styles/bsDefault.less +1912 -1890
  193. package/src/utils/CheckOneUser/index.md +39 -39
  194. package/src/utils/CheckOneUser/index.ts +51 -51
  195. package/src/utils/CustomLoginInfo.ts +55 -0
  196. package/src/utils/LocalstorageUtils.ts +95 -114
  197. package/src/utils/TableUtils.tsx +18 -18
  198. package/src/utils/checkUtils.ts +39 -39
  199. package/src/utils/enumConfig.ts +11 -11
  200. package/src/utils/getFormMode.js +12 -12
  201. package/src/utils/index.ts +4 -4
  202. package/src/utils/requestUtils.ts +166 -42
  203. package/src/utils/serialize.js +7 -7
  204. package/src/utils/utils.ts +191 -212
  205. package/tsconfig.json +29 -29
  206. package/typings.d.ts +4 -4
@@ -1,26 +1,26 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" class="design-iconfont">
2
- <defs>
3
- <path id="vpuagl2aub" d="M0 0H24V24H0z"/>
4
- <path d="M5.1277704,-2.07168062e-16 L12.8722296,2.07168062e-16 C14.6552671,-1.2037061e-16 15.3018396,0.185651222 15.9536914,0.534265408 C16.6055433,0.882879593 17.1171204,1.39445674 17.4657346,2.04630859 C17.8143488,2.69816044 18,3.34473292 18,5.1277704 L18,12.8722296 C18,14.6552671 17.8143488,15.3018396 17.4657346,15.9536914 C17.1171204,16.6055433 16.6055433,17.1171204 15.9536914,17.4657346 C15.3018396,17.8143488 14.6552671,18 12.8722296,18 L5.1277704,18 C3.34473292,18 2.69816044,17.8143488 2.04630859,17.4657346 C1.39445674,17.1171204 0.882879593,16.6055433 0.534265408,15.9536914 C0.185651222,15.3018396 8.02470732e-17,14.6552671 -1.38112041e-16,12.8722296 L1.38112041e-16,5.1277704 C-8.02470732e-17,3.34473292 0.185651222,2.69816044 0.534265408,2.04630859 C0.882879593,1.39445674 1.39445674,0.882879593 2.04630859,0.534265408 C2.69816044,0.185651222 3.34473292,1.2037061e-16 5.1277704,-2.07168062e-16 Z" id="9tkq7bared"/>
5
- <path id="a485p4r8he" d="M0 0H14V14H0z"/>
6
- <linearGradient x1="100%" y1="50%" x2="0%" y2="50%" id="fsb3v12sda">
7
- <stop stop-color="#10295B" offset="0%"/>
8
- <stop stop-color="#0F2A61" offset="100%"/>
9
- </linearGradient>
10
- </defs>
11
- <g fill="none" fill-rule="evenodd">
12
- <mask id="hvyjhat2pc" fill="#fff">
13
- <use xlink:href="#vpuagl2aub"/>
14
- </mask>
15
- <g mask="url(#hvyjhat2pc)">
16
- <g transform="translate(5 5)">
17
- <mask id="ifetffbq2f" fill="#fff">
18
- <use xlink:href="#a485p4r8he"/>
19
- </mask>
20
- <g mask="url(#ifetffbq2f)">
21
- <path d="M0.799503052 1.50303676e-15L0 0.796118532 4.44765885 5.26408461 0 9.7320507 0.799503052 10.5281692 5.24340131 6.06358768 9.68729958 10.5281692 10.4868026 9.7320507 6.03951985 5.26446067 10.4868026 0.796118532 9.68729958 0 5.24340131 4.46420549 0.799503052 0.000376053891z" transform="translate(1.752867 1.756628)" fill="#999" fill-rule="nonzero"/>
22
- </g>
23
- </g>
24
- </g>
25
- </g>
26
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" class="design-iconfont">
2
+ <defs>
3
+ <path id="vpuagl2aub" d="M0 0H24V24H0z"/>
4
+ <path d="M5.1277704,-2.07168062e-16 L12.8722296,2.07168062e-16 C14.6552671,-1.2037061e-16 15.3018396,0.185651222 15.9536914,0.534265408 C16.6055433,0.882879593 17.1171204,1.39445674 17.4657346,2.04630859 C17.8143488,2.69816044 18,3.34473292 18,5.1277704 L18,12.8722296 C18,14.6552671 17.8143488,15.3018396 17.4657346,15.9536914 C17.1171204,16.6055433 16.6055433,17.1171204 15.9536914,17.4657346 C15.3018396,17.8143488 14.6552671,18 12.8722296,18 L5.1277704,18 C3.34473292,18 2.69816044,17.8143488 2.04630859,17.4657346 C1.39445674,17.1171204 0.882879593,16.6055433 0.534265408,15.9536914 C0.185651222,15.3018396 8.02470732e-17,14.6552671 -1.38112041e-16,12.8722296 L1.38112041e-16,5.1277704 C-8.02470732e-17,3.34473292 0.185651222,2.69816044 0.534265408,2.04630859 C0.882879593,1.39445674 1.39445674,0.882879593 2.04630859,0.534265408 C2.69816044,0.185651222 3.34473292,1.2037061e-16 5.1277704,-2.07168062e-16 Z" id="9tkq7bared"/>
5
+ <path id="a485p4r8he" d="M0 0H14V14H0z"/>
6
+ <linearGradient x1="100%" y1="50%" x2="0%" y2="50%" id="fsb3v12sda">
7
+ <stop stop-color="#10295B" offset="0%"/>
8
+ <stop stop-color="#0F2A61" offset="100%"/>
9
+ </linearGradient>
10
+ </defs>
11
+ <g fill="none" fill-rule="evenodd">
12
+ <mask id="hvyjhat2pc" fill="#fff">
13
+ <use xlink:href="#vpuagl2aub"/>
14
+ </mask>
15
+ <g mask="url(#hvyjhat2pc)">
16
+ <g transform="translate(5 5)">
17
+ <mask id="ifetffbq2f" fill="#fff">
18
+ <use xlink:href="#a485p4r8he"/>
19
+ </mask>
20
+ <g mask="url(#ifetffbq2f)">
21
+ <path d="M0.799503052 1.50303676e-15L0 0.796118532 4.44765885 5.26408461 0 9.7320507 0.799503052 10.5281692 5.24340131 6.06358768 9.68729958 10.5281692 10.4868026 9.7320507 6.03951985 5.26446067 10.4868026 0.796118532 9.68729958 0 5.24340131 4.46420549 0.799503052 0.000376053891z" transform="translate(1.752867 1.756628)" fill="#999" fill-rule="nonzero"/>
22
+ </g>
23
+ </g>
24
+ </g>
25
+ </g>
26
+ </svg>
@@ -1,17 +1,17 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" class="design-iconfont">
2
- <defs>
3
- <linearGradient x1="100%" y1="50%" x2="0%" y2="50%" id="l1lf23lgga">
4
- <stop stop-color="#10295B" offset="0%"/>
5
- <stop stop-color="#0F2A61" offset="100%"/>
6
- </linearGradient>
7
- <path id="okxu11mz5b" d="M0 0H24V24H0z"/>
8
- </defs>
9
- <g fill="none" fill-rule="evenodd">
10
- <mask id="7u8dk2lilc" fill="#fff">
11
- <use xlink:href="#okxu11mz5b"/>
12
- </mask>
13
- <g mask="url(#7u8dk2lilc)" fill="#999" fill-rule="nonzero">
14
- <path d="M1.31655092,7 C2.03935948,7 2.6253116,7.58595212 2.6253116,8.30876068 C2.6253116,9.03156925 2.03935948,9.61752137 1.31655092,9.61752137 C0.593742351,9.61752137 0.00779023438,9.03156925 0.00779023438,8.30876068 C0.00779023438,7.58595212 0.593742351,7 1.31655092,7 Z M6.99034011,7 C7.71314867,7 8.29910079,7.58595212 8.29910079,8.30876068 C8.29910079,9.03156925 7.71314867,9.61752137 6.99034011,9.61752137 C6.26753154,9.61752137 5.68157942,9.03156925 5.68157942,8.30876068 C5.68157942,7.58595212 6.26753154,7 6.99034011,7 Z M12.6641293,7 C13.3869378,7 13.97289,7.58595212 13.97289,8.30876068 C13.97289,9.03156925 13.3869378,9.61752137 12.6641293,9.61752137 C11.9413207,9.61752137 11.3553686,9.03156925 11.3553686,8.30876068 C11.3553686,7.58595212 11.9413207,7 12.6641293,7 Z M1.31655092,-5.32907052e-15 C2.03935948,-5.32907052e-15 2.6253116,0.585952117 2.6253116,1.30876068 C2.6253116,2.03156925 2.03935948,2.61752137 1.31655092,2.61752137 C0.593742351,2.61752137 0.00779023438,2.03156925 0.00779023438,1.30876068 C0.00779023438,0.585952117 0.593742351,-5.32907052e-15 1.31655092,-5.32907052e-15 Z M6.99034011,-5.32907052e-15 C7.71314867,-5.32907052e-15 8.29910079,0.585952117 8.29910079,1.30876068 C8.29910079,2.03156925 7.71314867,2.61752137 6.99034011,2.61752137 C6.26753154,2.61752137 5.68157942,2.03156925 5.68157942,1.30876068 C5.68157942,0.585952117 6.26753154,-5.32907052e-15 6.99034011,-5.32907052e-15 Z M12.6641293,-5.32907052e-15 C13.3869378,-5.32907052e-15 13.97289,0.585952117 13.97289,1.30876068 C13.97289,2.03156925 13.3869378,2.61752137 12.6641293,2.61752137 C11.9413207,2.61752137 11.3553686,2.03156925 11.3553686,1.30876068 C11.3553686,0.585952117 11.9413207,-5.32907052e-15 12.6641293,-5.32907052e-15 Z" transform="translate(5 7)"/>
15
- </g>
16
- </g>
17
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" class="design-iconfont">
2
+ <defs>
3
+ <linearGradient x1="100%" y1="50%" x2="0%" y2="50%" id="l1lf23lgga">
4
+ <stop stop-color="#10295B" offset="0%"/>
5
+ <stop stop-color="#0F2A61" offset="100%"/>
6
+ </linearGradient>
7
+ <path id="okxu11mz5b" d="M0 0H24V24H0z"/>
8
+ </defs>
9
+ <g fill="none" fill-rule="evenodd">
10
+ <mask id="7u8dk2lilc" fill="#fff">
11
+ <use xlink:href="#okxu11mz5b"/>
12
+ </mask>
13
+ <g mask="url(#7u8dk2lilc)" fill="#999" fill-rule="nonzero">
14
+ <path d="M1.31655092,7 C2.03935948,7 2.6253116,7.58595212 2.6253116,8.30876068 C2.6253116,9.03156925 2.03935948,9.61752137 1.31655092,9.61752137 C0.593742351,9.61752137 0.00779023438,9.03156925 0.00779023438,8.30876068 C0.00779023438,7.58595212 0.593742351,7 1.31655092,7 Z M6.99034011,7 C7.71314867,7 8.29910079,7.58595212 8.29910079,8.30876068 C8.29910079,9.03156925 7.71314867,9.61752137 6.99034011,9.61752137 C6.26753154,9.61752137 5.68157942,9.03156925 5.68157942,8.30876068 C5.68157942,7.58595212 6.26753154,7 6.99034011,7 Z M12.6641293,7 C13.3869378,7 13.97289,7.58595212 13.97289,8.30876068 C13.97289,9.03156925 13.3869378,9.61752137 12.6641293,9.61752137 C11.9413207,9.61752137 11.3553686,9.03156925 11.3553686,8.30876068 C11.3553686,7.58595212 11.9413207,7 12.6641293,7 Z M1.31655092,-5.32907052e-15 C2.03935948,-5.32907052e-15 2.6253116,0.585952117 2.6253116,1.30876068 C2.6253116,2.03156925 2.03935948,2.61752137 1.31655092,2.61752137 C0.593742351,2.61752137 0.00779023438,2.03156925 0.00779023438,1.30876068 C0.00779023438,0.585952117 0.593742351,-5.32907052e-15 1.31655092,-5.32907052e-15 Z M6.99034011,-5.32907052e-15 C7.71314867,-5.32907052e-15 8.29910079,0.585952117 8.29910079,1.30876068 C8.29910079,2.03156925 7.71314867,2.61752137 6.99034011,2.61752137 C6.26753154,2.61752137 5.68157942,2.03156925 5.68157942,1.30876068 C5.68157942,0.585952117 6.26753154,-5.32907052e-15 6.99034011,-5.32907052e-15 Z M12.6641293,-5.32907052e-15 C13.3869378,-5.32907052e-15 13.97289,0.585952117 13.97289,1.30876068 C13.97289,2.03156925 13.3869378,2.61752137 12.6641293,2.61752137 C11.9413207,2.61752137 11.3553686,2.03156925 11.3553686,1.30876068 C11.3553686,0.585952117 11.9413207,-5.32907052e-15 12.6641293,-5.32907052e-15 Z" transform="translate(5 7)"/>
15
+ </g>
16
+ </g>
17
+ </svg>
@@ -1,38 +1,38 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="40px" height="42px" viewBox="0 0 40 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>编组 18</title>
4
- <g id="导出功能" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="编组-13" transform="translate(-14.000000, -138.000000)">
6
- <g id="编组-21备份-21" transform="translate(0.000000, 126.000000)">
7
- <g id="编组-18" transform="translate(14.000000, 12.000000)">
8
- <rect id="矩形" stroke="#979797" fill="#D8D8D8" opacity="0" x="0.5" y="0.5" width="39" height="41"></rect>
9
- <g id="编组-10" transform="translate(6.000000, 4.000000)">
10
- <g id="编组-6">
11
- <path d="M4,28 L4,2 C4,0.8954305 4.8954305,-1.91384796e-17 6,0 L20.1028879,0 L20.1028879,0 L28,7.2545499 L28,28 C28,29.1045695 27.1045695,30 26,30 L6,30 C4.8954305,30 4,29.1045695 4,28 Z" id="路径-6" fill="#1B79FF"></path>
12
- <g id="编组-2" transform="translate(0.000000, 9.000000)">
13
- <path d="M11,0.5 C11.4142136,0.5 11.7892136,0.667893219 12.0606602,0.939339828 C12.3321068,1.21078644 12.5,1.58578644 12.5,2 L12.5,2 L12.5,11 C12.5,11.4142136 12.3321068,11.7892136 12.0606602,12.0606602 C11.7892136,12.3321068 11.4142136,12.5 11,12.5 L11,12.5 L2,12.5 C1.58578644,12.5 1.21078644,12.3321068 0.939339828,12.0606602 C0.667893219,11.7892136 0.5,11.4142136 0.5,11 L0.5,11 L0.5,2 C0.5,1.58578644 0.667893219,1.21078644 0.939339828,0.939339828 C1.21078644,0.667893219 1.58578644,0.5 2,0.5 L2,0.5 Z" id="矩形" stroke="#02B56E" fill="#FFFFFF"></path>
14
- <g id="X" transform="translate(3.986000, 4.100000)" fill="#02B56E" fill-rule="nonzero">
15
- <polygon id="路径" points="3.598 4.9 2.583 3.381 1.582 4.9 0 4.9 1.785 2.422 0.077 0 1.638 0 2.618 1.414 3.584 0 5.082 0 3.374 2.366 5.194 4.9"></polygon>
16
- </g>
17
- </g>
18
- <path d="M15,10 L18,10 C18.5522847,10 19,10.4477153 19,11 L19,12 C19,12.5522847 18.5522847,13 18,13 L15,13 C14.4477153,13 14,12.5522847 14,12 L14,11 C14,10.4477153 14.4477153,10 15,10 Z" id="矩形备份-7" fill="#02B56E"></path>
19
- <path d="M21,10 L24,10 C24.5522847,10 25,10.4477153 25,11 L25,12 C25,12.5522847 24.5522847,13 24,13 L21,13 C20.4477153,13 20,12.5522847 20,12 L20,11 C20,10.4477153 20.4477153,10 21,10 Z" id="矩形备份-18" fill="#02B56E"></path>
20
- <path d="M15,14 L18,14 C18.5522847,14 19,14.4477153 19,15 L19,16 C19,16.5522847 18.5522847,17 18,17 L15,17 C14.4477153,17 14,16.5522847 14,16 L14,15 C14,14.4477153 14.4477153,14 15,14 Z" id="矩形备份-20" fill="#02B56E"></path>
21
- <path d="M21,14 L24,14 C24.5522847,14 25,14.4477153 25,15 L25,16 C25,16.5522847 24.5522847,17 24,17 L21,17 C20.4477153,17 20,16.5522847 20,16 L20,15 C20,14.4477153 20.4477153,14 21,14 Z" id="矩形备份-19" fill="#02B56E"></path>
22
- <path d="M15,18 L18,18 C18.5522847,18 19,18.4477153 19,19 L19,20 C19,20.5522847 18.5522847,21 18,21 L15,21 C14.4477153,21 14,20.5522847 14,20 L14,19 C14,18.4477153 14.4477153,18 15,18 Z" id="矩形备份-22" fill="#02B56E"></path>
23
- <path d="M21,18 L24,18 C24.5522847,18 25,18.4477153 25,19 L25,20 C25,20.5522847 24.5522847,21 24,21 L21,21 C20.4477153,21 20,20.5522847 20,20 L20,19 C20,18.4477153 20.4477153,18 21,18 Z" id="矩形备份-21" fill="#02B56E"></path>
24
- <polygon id="路径-19" fill="#02B56E" points="20.1168478 0 20.1168478 7.2545499 28 7.2545499"></polygon>
25
- </g>
26
- <g id="编组-8" transform="translate(17.000000, 19.000000)" stroke="#FFFFFF">
27
- <circle id="椭圆形" fill="#FE0300" cx="8" cy="8" r="7.5"></circle>
28
- <g id="编组-9" transform="translate(5.000000, 5.000000)" stroke-linecap="round" stroke-width="1.13795117">
29
- <polyline id="路径-20" transform="translate(3.181981, 3.181981) rotate(-315.000000) translate(-3.181981, -3.181981) " points="3.18198052 7.18198052 3.18198052 1.99975567 3.18198052 -0.818019485"></polyline>
30
- <polyline id="路径-20备份" transform="translate(3.181981, 3.181981) scale(-1, 1) rotate(-315.000000) translate(-3.181981, -3.181981) " points="3.18198052 7.18198052 3.18198052 1.99975567 3.18198052 -0.818019485"></polyline>
31
- </g>
32
- </g>
33
- </g>
34
- </g>
35
- </g>
36
- </g>
37
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="40px" height="42px" viewBox="0 0 40 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 18</title>
4
+ <g id="导出功能" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="编组-13" transform="translate(-14.000000, -138.000000)">
6
+ <g id="编组-21备份-21" transform="translate(0.000000, 126.000000)">
7
+ <g id="编组-18" transform="translate(14.000000, 12.000000)">
8
+ <rect id="矩形" stroke="#979797" fill="#D8D8D8" opacity="0" x="0.5" y="0.5" width="39" height="41"></rect>
9
+ <g id="编组-10" transform="translate(6.000000, 4.000000)">
10
+ <g id="编组-6">
11
+ <path d="M4,28 L4,2 C4,0.8954305 4.8954305,-1.91384796e-17 6,0 L20.1028879,0 L20.1028879,0 L28,7.2545499 L28,28 C28,29.1045695 27.1045695,30 26,30 L6,30 C4.8954305,30 4,29.1045695 4,28 Z" id="路径-6" fill="#1B79FF"></path>
12
+ <g id="编组-2" transform="translate(0.000000, 9.000000)">
13
+ <path d="M11,0.5 C11.4142136,0.5 11.7892136,0.667893219 12.0606602,0.939339828 C12.3321068,1.21078644 12.5,1.58578644 12.5,2 L12.5,2 L12.5,11 C12.5,11.4142136 12.3321068,11.7892136 12.0606602,12.0606602 C11.7892136,12.3321068 11.4142136,12.5 11,12.5 L11,12.5 L2,12.5 C1.58578644,12.5 1.21078644,12.3321068 0.939339828,12.0606602 C0.667893219,11.7892136 0.5,11.4142136 0.5,11 L0.5,11 L0.5,2 C0.5,1.58578644 0.667893219,1.21078644 0.939339828,0.939339828 C1.21078644,0.667893219 1.58578644,0.5 2,0.5 L2,0.5 Z" id="矩形" stroke="#005CFF" fill="#FFFFFF"></path>
14
+ <g id="X" transform="translate(3.986000, 4.100000)" fill="#005CFF" fill-rule="nonzero">
15
+ <polygon id="路径" points="3.598 4.9 2.583 3.381 1.582 4.9 0 4.9 1.785 2.422 0.077 0 1.638 0 2.618 1.414 3.584 0 5.082 0 3.374 2.366 5.194 4.9"></polygon>
16
+ </g>
17
+ </g>
18
+ <path d="M15,10 L18,10 C18.5522847,10 19,10.4477153 19,11 L19,12 C19,12.5522847 18.5522847,13 18,13 L15,13 C14.4477153,13 14,12.5522847 14,12 L14,11 C14,10.4477153 14.4477153,10 15,10 Z" id="矩形备份-7" fill="#005CFF"></path>
19
+ <path d="M21,10 L24,10 C24.5522847,10 25,10.4477153 25,11 L25,12 C25,12.5522847 24.5522847,13 24,13 L21,13 C20.4477153,13 20,12.5522847 20,12 L20,11 C20,10.4477153 20.4477153,10 21,10 Z" id="矩形备份-18" fill="#005CFF"></path>
20
+ <path d="M15,14 L18,14 C18.5522847,14 19,14.4477153 19,15 L19,16 C19,16.5522847 18.5522847,17 18,17 L15,17 C14.4477153,17 14,16.5522847 14,16 L14,15 C14,14.4477153 14.4477153,14 15,14 Z" id="矩形备份-20" fill="#005CFF"></path>
21
+ <path d="M21,14 L24,14 C24.5522847,14 25,14.4477153 25,15 L25,16 C25,16.5522847 24.5522847,17 24,17 L21,17 C20.4477153,17 20,16.5522847 20,16 L20,15 C20,14.4477153 20.4477153,14 21,14 Z" id="矩形备份-19" fill="#005CFF"></path>
22
+ <path d="M15,18 L18,18 C18.5522847,18 19,18.4477153 19,19 L19,20 C19,20.5522847 18.5522847,21 18,21 L15,21 C14.4477153,21 14,20.5522847 14,20 L14,19 C14,18.4477153 14.4477153,18 15,18 Z" id="矩形备份-22" fill="#005CFF"></path>
23
+ <path d="M21,18 L24,18 C24.5522847,18 25,18.4477153 25,19 L25,20 C25,20.5522847 24.5522847,21 24,21 L21,21 C20.4477153,21 20,20.5522847 20,20 L20,19 C20,18.4477153 20.4477153,18 21,18 Z" id="矩形备份-21" fill="#005CFF"></path>
24
+ <polygon id="路径-19" fill="#005CFF" points="20.1168478 0 20.1168478 7.2545499 28 7.2545499"></polygon>
25
+ </g>
26
+ <g id="编组-8" transform="translate(17.000000, 19.000000)" stroke="#FFFFFF">
27
+ <circle id="椭圆形" fill="#FE0300" cx="8" cy="8" r="7.5"></circle>
28
+ <g id="编组-9" transform="translate(5.000000, 5.000000)" stroke-linecap="round" stroke-width="1.13795117">
29
+ <polyline id="路径-20" transform="translate(3.181981, 3.181981) rotate(-315.000000) translate(-3.181981, -3.181981) " points="3.18198052 7.18198052 3.18198052 1.99975567 3.18198052 -0.818019485"></polyline>
30
+ <polyline id="路径-20备份" transform="translate(3.181981, 3.181981) scale(-1, 1) rotate(-315.000000) translate(-3.181981, -3.181981) " points="3.18198052 7.18198052 3.18198052 1.99975567 3.18198052 -0.818019485"></polyline>
31
+ </g>
32
+ </g>
33
+ </g>
34
+ </g>
35
+ </g>
36
+ </g>
37
+ </g>
38
38
  </svg>
@@ -1,29 +1,29 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="40px" height="42px" viewBox="0 0 40 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>编组 17</title>
4
- <g id="导出功能" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="编组-13" transform="translate(-14.000000, -74.000000)">
6
- <g id="编组-21备份-20" transform="translate(0.000000, 64.000000)">
7
- <g id="编组-17" transform="translate(14.000000, 10.000000)">
8
- <rect id="矩形" stroke="#979797" fill="#D8D8D8" opacity="0" x="0.5" y="0.5" width="39" height="41"></rect>
9
- <g id="编组-6" transform="translate(6.000000, 6.000000)">
10
- <path d="M4,28 L4,2 C4,0.8954305 4.8954305,-1.91384796e-17 6,0 L20.1028879,0 L20.1028879,0 L28,7.2545499 L28,28 C28,29.1045695 27.1045695,30 26,30 L6,30 C4.8954305,30 4,29.1045695 4,28 Z" id="路径-6" fill="#1B79FF"></path>
11
- <g id="编组-2" transform="translate(0.000000, 9.000000)">
12
- <path d="M11,0.5 C11.4142136,0.5 11.7892136,0.667893219 12.0606602,0.939339828 C12.3321068,1.21078644 12.5,1.58578644 12.5,2 L12.5,2 L12.5,11 C12.5,11.4142136 12.3321068,11.7892136 12.0606602,12.0606602 C11.7892136,12.3321068 11.4142136,12.5 11,12.5 L11,12.5 L2,12.5 C1.58578644,12.5 1.21078644,12.3321068 0.939339828,12.0606602 C0.667893219,11.7892136 0.5,11.4142136 0.5,11 L0.5,11 L0.5,2 C0.5,1.58578644 0.667893219,1.21078644 0.939339828,0.939339828 C1.21078644,0.667893219 1.58578644,0.5 2,0.5 L2,0.5 Z" id="矩形" stroke="#02B56E" fill="#FFFFFF"></path>
13
- <g id="X" transform="translate(3.986000, 4.100000)" fill="#02B56E" fill-rule="nonzero">
14
- <polygon id="路径" points="3.598 4.9 2.583 3.381 1.582 4.9 0 4.9 1.785 2.422 0.077 0 1.638 0 2.618 1.414 3.584 0 5.082 0 3.374 2.366 5.194 4.9"></polygon>
15
- </g>
16
- </g>
17
- <path d="M15,10 L18,10 C18.5522847,10 19,10.4477153 19,11 L19,12 C19,12.5522847 18.5522847,13 18,13 L15,13 C14.4477153,13 14,12.5522847 14,12 L14,11 C14,10.4477153 14.4477153,10 15,10 Z" id="矩形备份-7" fill="#02B56E"></path>
18
- <path d="M21,10 L24,10 C24.5522847,10 25,10.4477153 25,11 L25,12 C25,12.5522847 24.5522847,13 24,13 L21,13 C20.4477153,13 20,12.5522847 20,12 L20,11 C20,10.4477153 20.4477153,10 21,10 Z" id="矩形备份-18" fill="#02B56E"></path>
19
- <path d="M15,14 L18,14 C18.5522847,14 19,14.4477153 19,15 L19,16 C19,16.5522847 18.5522847,17 18,17 L15,17 C14.4477153,17 14,16.5522847 14,16 L14,15 C14,14.4477153 14.4477153,14 15,14 Z" id="矩形备份-20" fill="#02B56E"></path>
20
- <path d="M21,14 L24,14 C24.5522847,14 25,14.4477153 25,15 L25,16 C25,16.5522847 24.5522847,17 24,17 L21,17 C20.4477153,17 20,16.5522847 20,16 L20,15 C20,14.4477153 20.4477153,14 21,14 Z" id="矩形备份-19" fill="#02B56E"></path>
21
- <path d="M15,18 L18,18 C18.5522847,18 19,18.4477153 19,19 L19,20 C19,20.5522847 18.5522847,21 18,21 L15,21 C14.4477153,21 14,20.5522847 14,20 L14,19 C14,18.4477153 14.4477153,18 15,18 Z" id="矩形备份-22" fill="#02B56E"></path>
22
- <path d="M21,18 L24,18 C24.5522847,18 25,18.4477153 25,19 L25,20 C25,20.5522847 24.5522847,21 24,21 L21,21 C20.4477153,21 20,20.5522847 20,20 L20,19 C20,18.4477153 20.4477153,18 21,18 Z" id="矩形备份-21" fill="#02B56E"></path>
23
- <polygon id="路径-19" fill="#02B56E" points="20.1168478 0 20.1168478 7.2545499 28 7.2545499"></polygon>
24
- </g>
25
- </g>
26
- </g>
27
- </g>
28
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="40px" height="42px" viewBox="0 0 40 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 17</title>
4
+ <g id="导出功能" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="编组-13" transform="translate(-14.000000, -74.000000)">
6
+ <g id="编组-21备份-20" transform="translate(0.000000, 64.000000)">
7
+ <g id="编组-17" transform="translate(14.000000, 10.000000)">
8
+ <rect id="矩形" stroke="#979797" fill="#D8D8D8" opacity="0" x="0.5" y="0.5" width="39" height="41"></rect>
9
+ <g id="编组-6" transform="translate(6.000000, 6.000000)">
10
+ <path d="M4,28 L4,2 C4,0.8954305 4.8954305,-1.91384796e-17 6,0 L20.1028879,0 L20.1028879,0 L28,7.2545499 L28,28 C28,29.1045695 27.1045695,30 26,30 L6,30 C4.8954305,30 4,29.1045695 4,28 Z" id="路径-6" fill="#1B79FF"></path>
11
+ <g id="编组-2" transform="translate(0.000000, 9.000000)">
12
+ <path d="M11,0.5 C11.4142136,0.5 11.7892136,0.667893219 12.0606602,0.939339828 C12.3321068,1.21078644 12.5,1.58578644 12.5,2 L12.5,2 L12.5,11 C12.5,11.4142136 12.3321068,11.7892136 12.0606602,12.0606602 C11.7892136,12.3321068 11.4142136,12.5 11,12.5 L11,12.5 L2,12.5 C1.58578644,12.5 1.21078644,12.3321068 0.939339828,12.0606602 C0.667893219,11.7892136 0.5,11.4142136 0.5,11 L0.5,11 L0.5,2 C0.5,1.58578644 0.667893219,1.21078644 0.939339828,0.939339828 C1.21078644,0.667893219 1.58578644,0.5 2,0.5 L2,0.5 Z" id="矩形" stroke="#005CFF" fill="#FFFFFF"></path>
13
+ <g id="X" transform="translate(3.986000, 4.100000)" fill="#005CFF" fill-rule="nonzero">
14
+ <polygon id="路径" points="3.598 4.9 2.583 3.381 1.582 4.9 0 4.9 1.785 2.422 0.077 0 1.638 0 2.618 1.414 3.584 0 5.082 0 3.374 2.366 5.194 4.9"></polygon>
15
+ </g>
16
+ </g>
17
+ <path d="M15,10 L18,10 C18.5522847,10 19,10.4477153 19,11 L19,12 C19,12.5522847 18.5522847,13 18,13 L15,13 C14.4477153,13 14,12.5522847 14,12 L14,11 C14,10.4477153 14.4477153,10 15,10 Z" id="矩形备份-7" fill="#005CFF"></path>
18
+ <path d="M21,10 L24,10 C24.5522847,10 25,10.4477153 25,11 L25,12 C25,12.5522847 24.5522847,13 24,13 L21,13 C20.4477153,13 20,12.5522847 20,12 L20,11 C20,10.4477153 20.4477153,10 21,10 Z" id="矩形备份-18" fill="#005CFF"></path>
19
+ <path d="M15,14 L18,14 C18.5522847,14 19,14.4477153 19,15 L19,16 C19,16.5522847 18.5522847,17 18,17 L15,17 C14.4477153,17 14,16.5522847 14,16 L14,15 C14,14.4477153 14.4477153,14 15,14 Z" id="矩形备份-20" fill="#005CFF"></path>
20
+ <path d="M21,14 L24,14 C24.5522847,14 25,14.4477153 25,15 L25,16 C25,16.5522847 24.5522847,17 24,17 L21,17 C20.4477153,17 20,16.5522847 20,16 L20,15 C20,14.4477153 20.4477153,14 21,14 Z" id="矩形备份-19" fill="#005CFF"></path>
21
+ <path d="M15,18 L18,18 C18.5522847,18 19,18.4477153 19,19 L19,20 C19,20.5522847 18.5522847,21 18,21 L15,21 C14.4477153,21 14,20.5522847 14,20 L14,19 C14,18.4477153 14.4477153,18 15,18 Z" id="矩形备份-22" fill="#005CFF"></path>
22
+ <path d="M21,18 L24,18 C24.5522847,18 25,18.4477153 25,19 L25,20 C25,20.5522847 24.5522847,21 24,21 L21,21 C20.4477153,21 20,20.5522847 20,20 L20,19 C20,18.4477153 20.4477153,18 21,18 Z" id="矩形备份-21" fill="#005CFF"></path>
23
+ <polygon id="路径-19" fill="#005CFF" points="20.1168478 0 20.1168478 7.2545499 28 7.2545499"></polygon>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </g>
28
+ </g>
29
29
  </svg>
@@ -1,35 +1,35 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="40px" height="42px" viewBox="0 0 40 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>编组 19</title>
4
- <g id="导出功能" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="编组-13" transform="translate(-14.000000, -200.000000)">
6
- <g id="编组-21备份-22" transform="translate(0.000000, 188.000000)">
7
- <g id="编组-19" transform="translate(14.000000, 12.000000)">
8
- <rect id="矩形" stroke="#979797" fill="#D8D8D8" opacity="0" x="0.5" y="0.5" width="39" height="41"></rect>
9
- <g id="编组-16" transform="translate(6.000000, 4.000000)">
10
- <g id="编组-6">
11
- <path d="M4,28 L4,2 C4,0.8954305 4.8954305,-1.91384796e-17 6,0 L20.1028879,0 L20.1028879,0 L28,7.2545499 L28,28 C28,29.1045695 27.1045695,30 26,30 L6,30 C4.8954305,30 4,29.1045695 4,28 Z" id="路径-6" fill="#1B79FF"></path>
12
- <g id="编组-2" transform="translate(0.000000, 9.000000)">
13
- <path d="M11,0.5 C11.4142136,0.5 11.7892136,0.667893219 12.0606602,0.939339828 C12.3321068,1.21078644 12.5,1.58578644 12.5,2 L12.5,2 L12.5,11 C12.5,11.4142136 12.3321068,11.7892136 12.0606602,12.0606602 C11.7892136,12.3321068 11.4142136,12.5 11,12.5 L11,12.5 L2,12.5 C1.58578644,12.5 1.21078644,12.3321068 0.939339828,12.0606602 C0.667893219,11.7892136 0.5,11.4142136 0.5,11 L0.5,11 L0.5,2 C0.5,1.58578644 0.667893219,1.21078644 0.939339828,0.939339828 C1.21078644,0.667893219 1.58578644,0.5 2,0.5 L2,0.5 Z" id="矩形" stroke="#02B56E" fill="#FFFFFF"></path>
14
- <g id="X" transform="translate(3.986000, 4.100000)" fill="#02B56E" fill-rule="nonzero">
15
- <polygon id="路径" points="3.598 4.9 2.583 3.381 1.582 4.9 0 4.9 1.785 2.422 0.077 0 1.638 0 2.618 1.414 3.584 0 5.082 0 3.374 2.366 5.194 4.9"></polygon>
16
- </g>
17
- </g>
18
- <path d="M15,10 L18,10 C18.5522847,10 19,10.4477153 19,11 L19,12 C19,12.5522847 18.5522847,13 18,13 L15,13 C14.4477153,13 14,12.5522847 14,12 L14,11 C14,10.4477153 14.4477153,10 15,10 Z" id="矩形备份-7" fill="#02B56E"></path>
19
- <path d="M21,10 L24,10 C24.5522847,10 25,10.4477153 25,11 L25,12 C25,12.5522847 24.5522847,13 24,13 L21,13 C20.4477153,13 20,12.5522847 20,12 L20,11 C20,10.4477153 20.4477153,10 21,10 Z" id="矩形备份-18" fill="#02B56E"></path>
20
- <path d="M15,14 L18,14 C18.5522847,14 19,14.4477153 19,15 L19,16 C19,16.5522847 18.5522847,17 18,17 L15,17 C14.4477153,17 14,16.5522847 14,16 L14,15 C14,14.4477153 14.4477153,14 15,14 Z" id="矩形备份-20" fill="#02B56E"></path>
21
- <path d="M21,14 L24,14 C24.5522847,14 25,14.4477153 25,15 L25,16 C25,16.5522847 24.5522847,17 24,17 L21,17 C20.4477153,17 20,16.5522847 20,16 L20,15 C20,14.4477153 20.4477153,14 21,14 Z" id="矩形备份-19" fill="#02B56E"></path>
22
- <path d="M15,18 L18,18 C18.5522847,18 19,18.4477153 19,19 L19,20 C19,20.5522847 18.5522847,21 18,21 L15,21 C14.4477153,21 14,20.5522847 14,20 L14,19 C14,18.4477153 14.4477153,18 15,18 Z" id="矩形备份-22" fill="#02B56E"></path>
23
- <path d="M21,18 L24,18 C24.5522847,18 25,18.4477153 25,19 L25,20 C25,20.5522847 24.5522847,21 24,21 L21,21 C20.4477153,21 20,20.5522847 20,20 L20,19 C20,18.4477153 20.4477153,18 21,18 Z" id="矩形备份-21" fill="#02B56E"></path>
24
- <polygon id="路径-19" fill="#02B56E" points="20.1168478 0 20.1168478 7.2545499 28 7.2545499"></polygon>
25
- </g>
26
- <g id="编组-8" transform="translate(17.000000, 19.000000)" stroke="#FFFFFF">
27
- <circle id="椭圆形" fill="#14C255" cx="8" cy="8" r="7.5"></circle>
28
- <polyline id="路径-20" stroke-width="1.13795117" stroke-linecap="round" points="4 7.78993765 7.25875897 11 12 5"></polyline>
29
- </g>
30
- </g>
31
- </g>
32
- </g>
33
- </g>
34
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="40px" height="42px" viewBox="0 0 40 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 19</title>
4
+ <g id="导出功能" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="编组-13" transform="translate(-14.000000, -200.000000)">
6
+ <g id="编组-21备份-22" transform="translate(0.000000, 188.000000)">
7
+ <g id="编组-19" transform="translate(14.000000, 12.000000)">
8
+ <rect id="矩形" stroke="#979797" fill="#D8D8D8" opacity="0" x="0.5" y="0.5" width="39" height="41"></rect>
9
+ <g id="编组-16" transform="translate(6.000000, 4.000000)">
10
+ <g id="编组-6">
11
+ <path d="M4,28 L4,2 C4,0.8954305 4.8954305,-1.91384796e-17 6,0 L20.1028879,0 L20.1028879,0 L28,7.2545499 L28,28 C28,29.1045695 27.1045695,30 26,30 L6,30 C4.8954305,30 4,29.1045695 4,28 Z" id="路径-6" fill="#1B79FF"></path>
12
+ <g id="编组-2" transform="translate(0.000000, 9.000000)">
13
+ <path d="M11,0.5 C11.4142136,0.5 11.7892136,0.667893219 12.0606602,0.939339828 C12.3321068,1.21078644 12.5,1.58578644 12.5,2 L12.5,2 L12.5,11 C12.5,11.4142136 12.3321068,11.7892136 12.0606602,12.0606602 C11.7892136,12.3321068 11.4142136,12.5 11,12.5 L11,12.5 L2,12.5 C1.58578644,12.5 1.21078644,12.3321068 0.939339828,12.0606602 C0.667893219,11.7892136 0.5,11.4142136 0.5,11 L0.5,11 L0.5,2 C0.5,1.58578644 0.667893219,1.21078644 0.939339828,0.939339828 C1.21078644,0.667893219 1.58578644,0.5 2,0.5 L2,0.5 Z" id="矩形" stroke="#005CFF" fill="#FFFFFF"></path>
14
+ <g id="X" transform="translate(3.986000, 4.100000)" fill="#005CFF" fill-rule="nonzero">
15
+ <polygon id="路径" points="3.598 4.9 2.583 3.381 1.582 4.9 0 4.9 1.785 2.422 0.077 0 1.638 0 2.618 1.414 3.584 0 5.082 0 3.374 2.366 5.194 4.9"></polygon>
16
+ </g>
17
+ </g>
18
+ <path d="M15,10 L18,10 C18.5522847,10 19,10.4477153 19,11 L19,12 C19,12.5522847 18.5522847,13 18,13 L15,13 C14.4477153,13 14,12.5522847 14,12 L14,11 C14,10.4477153 14.4477153,10 15,10 Z" id="矩形备份-7" fill="#005CFF"></path>
19
+ <path d="M21,10 L24,10 C24.5522847,10 25,10.4477153 25,11 L25,12 C25,12.5522847 24.5522847,13 24,13 L21,13 C20.4477153,13 20,12.5522847 20,12 L20,11 C20,10.4477153 20.4477153,10 21,10 Z" id="矩形备份-18" fill="#005CFF"></path>
20
+ <path d="M15,14 L18,14 C18.5522847,14 19,14.4477153 19,15 L19,16 C19,16.5522847 18.5522847,17 18,17 L15,17 C14.4477153,17 14,16.5522847 14,16 L14,15 C14,14.4477153 14.4477153,14 15,14 Z" id="矩形备份-20" fill="#005CFF"></path>
21
+ <path d="M21,14 L24,14 C24.5522847,14 25,14.4477153 25,15 L25,16 C25,16.5522847 24.5522847,17 24,17 L21,17 C20.4477153,17 20,16.5522847 20,16 L20,15 C20,14.4477153 20.4477153,14 21,14 Z" id="矩形备份-19" fill="#005CFF"></path>
22
+ <path d="M15,18 L18,18 C18.5522847,18 19,18.4477153 19,19 L19,20 C19,20.5522847 18.5522847,21 18,21 L15,21 C14.4477153,21 14,20.5522847 14,20 L14,19 C14,18.4477153 14.4477153,18 15,18 Z" id="矩形备份-22" fill="#005CFF"></path>
23
+ <path d="M21,18 L24,18 C24.5522847,18 25,18.4477153 25,19 L25,20 C25,20.5522847 24.5522847,21 24,21 L21,21 C20.4477153,21 20,20.5522847 20,20 L20,19 C20,18.4477153 20.4477153,18 21,18 Z" id="矩形备份-21" fill="#005CFF"></path>
24
+ <polygon id="路径-19" fill="#005CFF" points="20.1168478 0 20.1168478 7.2545499 28 7.2545499"></polygon>
25
+ </g>
26
+ <g id="编组-8" transform="translate(17.000000, 19.000000)" stroke="#FFFFFF">
27
+ <circle id="椭圆形" fill="#14C255" cx="8" cy="8" r="7.5"></circle>
28
+ <polyline id="路径-20" stroke-width="1.13795117" stroke-linecap="round" points="4 7.78993765 7.25875897 11 12 5"></polyline>
29
+ </g>
30
+ </g>
31
+ </g>
32
+ </g>
33
+ </g>
34
+ </g>
35
35
  </svg>
@@ -1,12 +1,12 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="18px" height="18px" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>编组 9</title>
4
- <g id="星澜-个性化设置&amp;锁定列" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="画板" transform="translate(-67.000000, -43.000000)">
6
- <g id="编组-9" transform="translate(76.000000, 52.000000) scale(1, -1) translate(-76.000000, -52.000000) translate(67.000000, 43.000000)">
7
- <rect id="矩形" stroke="#979797" fill="#D8D8D8" opacity="0" x="0.5" y="0.5" width="17" height="17"></rect>
8
- <path d="M9.49980555,4.20269836 L15,9.65415997 L14.1747569,10.4721491 L10.0757645,6.40841633 L10.0757645,15 L8.90867951,15 L8.90906842,6.4246065 L4.82524306,10.4721491 L4,9.65493094 L9.49980555,4.20269836 Z M14.9824996,3 L14.9824996,4.15644073 L4.09333569,4.15644073 L4.09333569,3 L14.9824996,3 Z" id="形状结合" fill="#02B56E" fill-rule="nonzero" transform="translate(9.500000, 9.000000) rotate(-180.000000) translate(-9.500000, -9.000000) "></path>
9
- </g>
10
- </g>
11
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="18px" height="18px" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 9</title>
4
+ <g id="星澜-个性化设置&amp;锁定列" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="画板" transform="translate(-67.000000, -43.000000)">
6
+ <g id="编组-9" transform="translate(76.000000, 52.000000) scale(1, -1) translate(-76.000000, -52.000000) translate(67.000000, 43.000000)">
7
+ <rect id="矩形" stroke="#979797" fill="#D8D8D8" opacity="0" x="0.5" y="0.5" width="17" height="17"></rect>
8
+ <path d="M9.49980555,4.20269836 L15,9.65415997 L14.1747569,10.4721491 L10.0757645,6.40841633 L10.0757645,15 L8.90867951,15 L8.90906842,6.4246065 L4.82524306,10.4721491 L4,9.65493094 L9.49980555,4.20269836 Z M14.9824996,3 L14.9824996,4.15644073 L4.09333569,4.15644073 L4.09333569,3 L14.9824996,3 Z" id="形状结合" fill="#005CFF" fill-rule="nonzero" transform="translate(9.500000, 9.000000) rotate(-180.000000) translate(-9.500000, -9.000000) "></path>
9
+ </g>
10
+ </g>
11
+ </g>
12
12
  </svg>
@@ -1,16 +1,16 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="18px" height="18px" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>编组 9</title>
4
- <g id="星澜-个性化设置&amp;锁定列" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="列表搜索区功能迭代(可锁定列表)" transform="translate(-1256.000000, -596.000000)">
6
- <g id="编组-8" transform="translate(550.000000, 291.000000)">
7
- <g id="编组-8备份-3" transform="translate(590.000000, 294.000000)">
8
- <g id="编组-9" transform="translate(125.000000, 20.000000) scale(1, -1) translate(-125.000000, -20.000000) translate(116.000000, 11.000000)">
9
- <rect id="矩形" stroke="#979797" fill="#D8D8D8" opacity="0" x="0.5" y="0.5" width="17" height="17"></rect>
10
- <path d="M9.49980555,4.20269836 L15,9.65415997 L14.1747569,10.4721491 L10.0757645,6.40841633 L10.0757645,15 L8.90867951,15 L8.90906842,6.4246065 L4.82524306,10.4721491 L4,9.65493094 L9.49980555,4.20269836 Z M14.9824996,3 L14.9824996,4.15644073 L4.09333569,4.15644073 L4.09333569,3 L14.9824996,3 Z" id="形状结合" fill="#999999" fill-rule="nonzero" transform="translate(9.500000, 9.000000) rotate(-180.000000) translate(-9.500000, -9.000000) "></path>
11
- </g>
12
- </g>
13
- </g>
14
- </g>
15
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="18px" height="18px" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 9</title>
4
+ <g id="星澜-个性化设置&amp;锁定列" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="列表搜索区功能迭代(可锁定列表)" transform="translate(-1256.000000, -596.000000)">
6
+ <g id="编组-8" transform="translate(550.000000, 291.000000)">
7
+ <g id="编组-8备份-3" transform="translate(590.000000, 294.000000)">
8
+ <g id="编组-9" transform="translate(125.000000, 20.000000) scale(1, -1) translate(-125.000000, -20.000000) translate(116.000000, 11.000000)">
9
+ <rect id="矩形" stroke="#979797" fill="#D8D8D8" opacity="0" x="0.5" y="0.5" width="17" height="17"></rect>
10
+ <path d="M9.49980555,4.20269836 L15,9.65415997 L14.1747569,10.4721491 L10.0757645,6.40841633 L10.0757645,15 L8.90867951,15 L8.90906842,6.4246065 L4.82524306,10.4721491 L4,9.65493094 L9.49980555,4.20269836 Z M14.9824996,3 L14.9824996,4.15644073 L4.09333569,4.15644073 L4.09333569,3 L14.9824996,3 Z" id="形状结合" fill="#999999" fill-rule="nonzero" transform="translate(9.500000, 9.000000) rotate(-180.000000) translate(-9.500000, -9.000000) "></path>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ </g>
15
+ </g>
16
16
  </svg>
@@ -1,12 +1,12 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="18px" height="18px" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>编组 9</title>
4
- <g id="星澜-个性化设置&amp;锁定列" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="画板" transform="translate(-89.000000, -43.000000)">
6
- <g id="编组-9" transform="translate(89.000000, 43.000000)">
7
- <rect id="矩形" stroke="#979797" fill="#D8D8D8" opacity="0" x="0.5" y="0.5" width="17" height="17"></rect>
8
- <path d="M9.49980555,4.20269836 L15,9.65415997 L14.1747569,10.4721491 L10.0757645,6.40841633 L10.0757645,15 L8.90867951,15 L8.90906842,6.4246065 L4.82524306,10.4721491 L4,9.65493094 L9.49980555,4.20269836 Z M14.9824996,3 L14.9824996,4.15644073 L4.09333569,4.15644073 L4.09333569,3 L14.9824996,3 Z" id="形状结合" fill="#02B56E" fill-rule="nonzero" transform="translate(9.500000, 9.000000) rotate(-180.000000) translate(-9.500000, -9.000000) "></path>
9
- </g>
10
- </g>
11
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="18px" height="18px" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 9</title>
4
+ <g id="星澜-个性化设置&amp;锁定列" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="画板" transform="translate(-89.000000, -43.000000)">
6
+ <g id="编组-9" transform="translate(89.000000, 43.000000)">
7
+ <rect id="矩形" stroke="#979797" fill="#D8D8D8" opacity="0" x="0.5" y="0.5" width="17" height="17"></rect>
8
+ <path d="M9.49980555,4.20269836 L15,9.65415997 L14.1747569,10.4721491 L10.0757645,6.40841633 L10.0757645,15 L8.90867951,15 L8.90906842,6.4246065 L4.82524306,10.4721491 L4,9.65493094 L9.49980555,4.20269836 Z M14.9824996,3 L14.9824996,4.15644073 L4.09333569,4.15644073 L4.09333569,3 L14.9824996,3 Z" id="形状结合" fill="#005CFF" fill-rule="nonzero" transform="translate(9.500000, 9.000000) rotate(-180.000000) translate(-9.500000, -9.000000) "></path>
9
+ </g>
10
+ </g>
11
+ </g>
12
12
  </svg>
@@ -1,16 +1,16 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="18px" height="18px" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>编组 9</title>
4
- <g id="星澜-个性化设置&amp;锁定列" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="列表搜索区功能迭代(可锁定列表)" transform="translate(-1278.000000, -596.000000)">
6
- <g id="编组-8" transform="translate(550.000000, 291.000000)">
7
- <g id="编组-8备份-3" transform="translate(590.000000, 294.000000)">
8
- <g id="编组-9" transform="translate(138.000000, 11.000000)">
9
- <rect id="矩形" stroke="#979797" fill="#D8D8D8" opacity="0" x="0.5" y="0.5" width="17" height="17"></rect>
10
- <path d="M9.49980555,4.20269836 L15,9.65415997 L14.1747569,10.4721491 L10.0757645,6.40841633 L10.0757645,15 L8.90867951,15 L8.90906842,6.4246065 L4.82524306,10.4721491 L4,9.65493094 L9.49980555,4.20269836 Z M14.9824996,3 L14.9824996,4.15644073 L4.09333569,4.15644073 L4.09333569,3 L14.9824996,3 Z" id="形状结合" fill="#999999" fill-rule="nonzero" transform="translate(9.500000, 9.000000) rotate(-180.000000) translate(-9.500000, -9.000000) "></path>
11
- </g>
12
- </g>
13
- </g>
14
- </g>
15
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="18px" height="18px" viewBox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 9</title>
4
+ <g id="星澜-个性化设置&amp;锁定列" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="列表搜索区功能迭代(可锁定列表)" transform="translate(-1278.000000, -596.000000)">
6
+ <g id="编组-8" transform="translate(550.000000, 291.000000)">
7
+ <g id="编组-8备份-3" transform="translate(590.000000, 294.000000)">
8
+ <g id="编组-9" transform="translate(138.000000, 11.000000)">
9
+ <rect id="矩形" stroke="#979797" fill="#D8D8D8" opacity="0" x="0.5" y="0.5" width="17" height="17"></rect>
10
+ <path d="M9.49980555,4.20269836 L15,9.65415997 L14.1747569,10.4721491 L10.0757645,6.40841633 L10.0757645,15 L8.90867951,15 L8.90906842,6.4246065 L4.82524306,10.4721491 L4,9.65493094 L9.49980555,4.20269836 Z M14.9824996,3 L14.9824996,4.15644073 L4.09333569,4.15644073 L4.09333569,3 L14.9824996,3 Z" id="形状结合" fill="#999999" fill-rule="nonzero" transform="translate(9.500000, 9.000000) rotate(-180.000000) translate(-9.500000, -9.000000) "></path>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ </g>
15
+ </g>
16
16
  </svg>
@@ -1,16 +1,16 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="49px" height="49px" viewBox="0 0 49 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>编组@2x</title>
4
- <g id="全局导航相关功能需求设计" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g transform="translate(-327.000000, -7295.000000)" fill="#FFFFFF" id="编组-19">
6
- <g transform="translate(201.125000, 6939.000000)">
7
- <g id="编组-12" transform="translate(120.750000, 350.500000)">
8
- <g id="编组" transform="translate(5.125000, 5.500000)">
9
- <rect id="矩形" opacity="0" x="0.875" y="0.5" width="48" height="48"></rect>
10
- <polygon id="路径" fill-rule="nonzero" points="16.1903531 14.2124746 14.6278957 15.7683177 23.3198919 24.5 14.6278957 33.2316823 16.1903531 34.7875254 24.875 26.0624574 33.5596469 34.7875254 35.1221043 33.2316823 26.4308431 24.5007349 35.1221043 15.7683177 33.5596469 14.2124746 24.875 22.9368077 16.1903531 14.2132096"></polygon>
11
- </g>
12
- </g>
13
- </g>
14
- </g>
15
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="49px" height="49px" viewBox="0 0 49 49" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组@2x</title>
4
+ <g id="全局导航相关功能需求设计" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g transform="translate(-327.000000, -7295.000000)" fill="#FFFFFF" id="编组-19">
6
+ <g transform="translate(201.125000, 6939.000000)">
7
+ <g id="编组-12" transform="translate(120.750000, 350.500000)">
8
+ <g id="编组" transform="translate(5.125000, 5.500000)">
9
+ <rect id="矩形" opacity="0" x="0.875" y="0.5" width="48" height="48"></rect>
10
+ <polygon id="路径" fill-rule="nonzero" points="16.1903531 14.2124746 14.6278957 15.7683177 23.3198919 24.5 14.6278957 33.2316823 16.1903531 34.7875254 24.875 26.0624574 33.5596469 34.7875254 35.1221043 33.2316823 26.4308431 24.5007349 35.1221043 15.7683177 33.5596469 14.2124746 24.875 22.9368077 16.1903531 14.2132096"></polygon>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ </g>
15
+ </g>
16
16
  </svg>
@@ -1,16 +1,16 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="34px" height="34px" viewBox="0 0 34 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>矩形</title>
4
- <g id="列表功能" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="星澜-搜索-搜索功能" transform="translate(-1823.000000, -297.000000)">
6
- <g id="搜索组件-样式一" transform="translate(230.000000, 284.000000)">
7
- <g id="确定备份-2" transform="translate(1593.000000, 13.000000)">
8
- <path d="M5.55801813,1 L28.4419819,1 C30.0269041,1 30.6016352,1.16502331 31.181059,1.47490258 C31.7604829,1.78478186 32.2152181,2.2395171 32.5250974,2.81894097 C32.8349767,3.39836484 33,3.97309593 33,5.55801813 L33,28.4419819 C33,30.0269041 32.8349767,30.6016352 32.5250974,31.181059 C32.2152181,31.7604829 31.7604829,32.2152181 31.181059,32.5250974 C30.6016352,32.8349767 30.0269041,33 28.4419819,33 L5.55801813,33 C3.97309593,33 3.39836484,32.8349767 2.81894097,32.5250974 C2.2395171,32.2152181 1.78478186,31.7604829 1.47490258,31.181059 C1.16502331,30.6016352 1,30.0269041 1,28.4419819 L1,5.55801813 C1,3.97309593 1.16502331,3.39836484 1.47490258,2.81894097 C1.78478186,2.2395171 2.2395171,1.78478186 2.81894097,1.47490258 C3.39836484,1.16502331 3.97309593,1 5.55801813,1 Z" id="矩形" stroke="#D9D9D9" stroke-width="0.888888889"></path>
9
- <g id="scanning" transform="translate(9.000000, 9.000000)" fill="#000000" fill-rule="nonzero">
10
- <path d="M5.21873562,9.69278114 L6.28954184,10.7432953 L2.532,14.5 L5.24949999,14.5 L5.24949999,16 L1.5,16 C0.671572876,16 0,15.3284271 0,14.5 L0,11 L1.5,11 L1.5,13.41 L5.21873562,9.69278114 Z M10.7898541,9.72266777 L14.499,13.431 L14.5,11 L16,11 L16,14.5 C16,15.3284271 15.3284271,16 14.5,16 L10.7495,16 L10.7495,14.5 L13.446,14.5 L9.71904783,10.7731819 L10.7898541,9.72266777 Z M14.5,0 C15.3284271,0 16,0.671572876 16,1.5 L16,5 L14.5,5 L14.499,2.588 L10.779708,6.3074783 L9.71904783,5.24681813 L13.465,1.5 L10.75,1.5 L10.75,0 L14.5,0 Z M5.25000001,0 L5.25000001,1.5 L2.567,1.5 L6.31400442,5.24681813 L5.25334424,6.3074783 L1.5,2.554 L1.5,5 L0,5 L0,1.5 C0,0.671572876 0.671572876,0 1.5,0 L5.25000001,0 Z" id="形状"></path>
11
- </g>
12
- </g>
13
- </g>
14
- </g>
15
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="34px" height="34px" viewBox="0 0 34 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>矩形</title>
4
+ <g id="列表功能" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="星澜-搜索-搜索功能" transform="translate(-1823.000000, -297.000000)">
6
+ <g id="搜索组件-样式一" transform="translate(230.000000, 284.000000)">
7
+ <g id="确定备份-2" transform="translate(1593.000000, 13.000000)">
8
+ <path d="M5.55801813,1 L28.4419819,1 C30.0269041,1 30.6016352,1.16502331 31.181059,1.47490258 C31.7604829,1.78478186 32.2152181,2.2395171 32.5250974,2.81894097 C32.8349767,3.39836484 33,3.97309593 33,5.55801813 L33,28.4419819 C33,30.0269041 32.8349767,30.6016352 32.5250974,31.181059 C32.2152181,31.7604829 31.7604829,32.2152181 31.181059,32.5250974 C30.6016352,32.8349767 30.0269041,33 28.4419819,33 L5.55801813,33 C3.97309593,33 3.39836484,32.8349767 2.81894097,32.5250974 C2.2395171,32.2152181 1.78478186,31.7604829 1.47490258,31.181059 C1.16502331,30.6016352 1,30.0269041 1,28.4419819 L1,5.55801813 C1,3.97309593 1.16502331,3.39836484 1.47490258,2.81894097 C1.78478186,2.2395171 2.2395171,1.78478186 2.81894097,1.47490258 C3.39836484,1.16502331 3.97309593,1 5.55801813,1 Z" id="矩形" stroke="#D9D9D9" stroke-width="0.888888889"></path>
9
+ <g id="scanning" transform="translate(9.000000, 9.000000)" fill="#000000" fill-rule="nonzero">
10
+ <path d="M5.21873562,9.69278114 L6.28954184,10.7432953 L2.532,14.5 L5.24949999,14.5 L5.24949999,16 L1.5,16 C0.671572876,16 0,15.3284271 0,14.5 L0,11 L1.5,11 L1.5,13.41 L5.21873562,9.69278114 Z M10.7898541,9.72266777 L14.499,13.431 L14.5,11 L16,11 L16,14.5 C16,15.3284271 15.3284271,16 14.5,16 L10.7495,16 L10.7495,14.5 L13.446,14.5 L9.71904783,10.7731819 L10.7898541,9.72266777 Z M14.5,0 C15.3284271,0 16,0.671572876 16,1.5 L16,5 L14.5,5 L14.499,2.588 L10.779708,6.3074783 L9.71904783,5.24681813 L13.465,1.5 L10.75,1.5 L10.75,0 L14.5,0 Z M5.25000001,0 L5.25000001,1.5 L2.567,1.5 L6.31400442,5.24681813 L5.25334424,6.3074783 L1.5,2.554 L1.5,5 L0,5 L0,1.5 C0,0.671572876 0.671572876,0 1.5,0 L5.25000001,0 Z" id="形状"></path>
11
+ </g>
12
+ </g>
13
+ </g>
14
+ </g>
15
+ </g>
16
16
  </svg>