@bit-sun/business-component 2.2.49 → 2.3.0

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 (208) 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/common/ENUM.d.ts +40 -0
  9. package/dist/components/Business/BsLayouts/Components/CustomerMenu/MenuSetting/index.d.ts +1 -1
  10. package/dist/components/Business/BsLayouts/Components/CustomerMenu/index.d.ts +1 -1
  11. package/dist/components/Business/SearchSelect/index.d.ts +1 -1
  12. package/dist/components/Business/moreTreeTable/FixedScrollBar.d.ts +1 -1
  13. package/dist/components/Functional/BsAntdSula/BsCascader/index.d.ts +18 -0
  14. package/dist/components/Functional/BsAntdSula/index.d.ts +1 -0
  15. package/dist/components/Functional/SearchSelect/index.d.ts +1 -1
  16. package/dist/components/Solution/RuleComponent/Formula.d.ts +8 -0
  17. package/dist/components/Solution/RuleComponent/services.d.ts +1 -0
  18. package/dist/index.d.ts +3 -0
  19. package/dist/index.esm.js +9855 -11093
  20. package/dist/index.js +18586 -19820
  21. package/dist/utils/index.d.ts +1 -0
  22. package/dist/utils/utils.d.ts +8 -1
  23. package/docs/index.md +21 -21
  24. package/lib/assets/drag.svg +17 -17
  25. package/lib/assets/exportFail.svg +37 -37
  26. package/lib/assets/exportProcessing.svg +28 -28
  27. package/lib/assets/exportSuccess.svg +34 -34
  28. package/lib/assets/label_icon_bottom.svg +25 -25
  29. package/lib/assets/upExport.svg +22 -22
  30. package/package.json +78 -77
  31. package/src/assets/32.svg +27 -27
  32. package/src/assets/addIcon.svg +17 -17
  33. package/src/assets/allfunc.svg +27 -27
  34. package/src/assets/arrowRight.svg +24 -24
  35. package/src/assets/btn-delete.svg +29 -29
  36. package/src/assets/btn-edit.svg +19 -19
  37. package/src/assets/btn-more.svg +17 -17
  38. package/src/assets/btn-submit.svg +19 -19
  39. package/src/assets/caidan.svg +11 -11
  40. package/src/assets/close.svg +26 -26
  41. package/src/assets/drag.svg +17 -17
  42. package/src/assets/exportFail.svg +37 -37
  43. package/src/assets/exportProcessing.svg +28 -28
  44. package/src/assets/exportSuccess.svg +34 -34
  45. package/src/assets/fixed-left-active.svg +11 -11
  46. package/src/assets/fixed-left.svg +15 -15
  47. package/src/assets/fixed-right-active.svg +11 -11
  48. package/src/assets/fixed-right.svg +15 -15
  49. package/src/assets/guanbi.svg +15 -15
  50. package/src/assets/icon-quanping.svg +15 -15
  51. package/src/assets/icon-shezhi.svg +17 -17
  52. package/src/assets/label_icon_bottom.svg +25 -25
  53. package/src/assets/list-no-img.svg +21 -21
  54. package/src/assets/morentouxiang-32.svg +23 -23
  55. package/src/assets/scanning.svg +24 -24
  56. package/src/assets/upExport.svg +22 -22
  57. package/src/common/ENUM.ts +41 -0
  58. package/src/components/Business/AddSelectBusiness/index.md +161 -161
  59. package/src/components/Business/AddSelectBusiness/index.tsx +861 -861
  60. package/src/components/Business/BsLayouts/Components/AllFunc/drawContent.tsx +111 -111
  61. package/src/components/Business/BsLayouts/Components/AllFunc/index.less +153 -153
  62. package/src/components/Business/BsLayouts/Components/AllFunc/index.tsx +70 -70
  63. package/src/components/Business/BsLayouts/Components/CustomerMenu/MenuSetting/index.less +90 -90
  64. package/src/components/Business/BsLayouts/Components/CustomerMenu/MenuSetting/index.tsx +37 -37
  65. package/src/components/Business/BsLayouts/Components/CustomerMenu/MenuSetting/leftTree.tsx +242 -242
  66. package/src/components/Business/BsLayouts/Components/CustomerMenu/MenuSetting/rightTree.tsx +384 -384
  67. package/src/components/Business/BsLayouts/Components/CustomerMenu/globalMenu/DrawContent.tsx +285 -285
  68. package/src/components/Business/BsLayouts/Components/CustomerMenu/globalMenu/customMenuHeader.tsx +74 -74
  69. package/src/components/Business/BsLayouts/Components/CustomerMenu/globalMenu/drawContent.less +170 -170
  70. package/src/components/Business/BsLayouts/Components/CustomerMenu/index.less +64 -64
  71. package/src/components/Business/BsLayouts/Components/CustomerMenu/index.tsx +153 -153
  72. package/src/components/Business/BsLayouts/Components/GlobalHeader/index.less +72 -72
  73. package/src/components/Business/BsLayouts/Components/GlobalHeader/index.tsx +157 -157
  74. package/src/components/Business/BsLayouts/Components/RightContent/LoginModal.tsx +85 -85
  75. package/src/components/Business/BsLayouts/Components/RightContent/home.less +218 -218
  76. package/src/components/Business/BsLayouts/Components/RightContent/index.tsx +155 -155
  77. package/src/components/Business/BsLayouts/Components/SearchFunc/index.less +160 -160
  78. package/src/components/Business/BsLayouts/Components/SearchFunc/index.tsx +75 -75
  79. package/src/components/Business/BsLayouts/index.less +79 -79
  80. package/src/components/Business/BsLayouts/index.tsx +1484 -1484
  81. package/src/components/Business/BsLayouts/service.ts +10 -10
  82. package/src/components/Business/BsLayouts/utils.tsx +203 -203
  83. package/src/components/Business/BsSulaQueryTable/SearchItemSetting.tsx +564 -564
  84. package/src/components/Business/BsSulaQueryTable/index.less +221 -221
  85. package/src/components/Business/BsSulaQueryTable/index.tsx +527 -527
  86. package/src/components/Business/BsSulaQueryTable/setting.tsx +832 -832
  87. package/src/components/Business/BsSulaQueryTable/utils.less +65 -65
  88. package/src/components/Business/BsSulaQueryTable/utils.tsx +688 -688
  89. package/src/components/Business/CommodityEntry/index.md +70 -70
  90. package/src/components/Business/CommodityEntry/index.tsx +80 -80
  91. package/src/components/Business/CommonAlert/index.tsx +23 -23
  92. package/src/components/Business/CommonGuideWrapper/index.less +111 -111
  93. package/src/components/Business/CommonGuideWrapper/index.md +39 -39
  94. package/src/components/Business/CommonGuideWrapper/index.tsx +83 -83
  95. package/src/components/Business/DetailPageWrapper/index.less +79 -79
  96. package/src/components/Business/DetailPageWrapper/index.tsx +313 -313
  97. package/src/components/Business/DetailPageWrapper/utils.tsx +100 -100
  98. package/src/components/Business/HomePageWrapper/index.less +33 -33
  99. package/src/components/Business/HomePageWrapper/index.md +45 -45
  100. package/src/components/Business/HomePageWrapper/index.tsx +162 -162
  101. package/src/components/Business/JsonQueryTable/components/FieldsModifyModal.tsx +824 -824
  102. package/src/components/Business/JsonQueryTable/components/FieldsSettingsTable.tsx +201 -201
  103. package/src/components/Business/JsonQueryTable/components/Formula.tsx +205 -205
  104. package/src/components/Business/JsonQueryTable/components/MaintainOptions.tsx +127 -127
  105. package/src/components/Business/JsonQueryTable/configButton/index.js +20 -20
  106. package/src/components/Business/JsonQueryTable/configTree/component/compactArrayView.js +25 -25
  107. package/src/components/Business/JsonQueryTable/configTree/component/compactObjectView.js +30 -30
  108. package/src/components/Business/JsonQueryTable/configTree/index.js +82 -82
  109. package/src/components/Business/JsonQueryTable/configTree/index.less +44 -44
  110. package/src/components/Business/JsonQueryTable/configTree/parser/highlight.js +57 -57
  111. package/src/components/Business/JsonQueryTable/configTree/parser/index.js +124 -124
  112. package/src/components/Business/JsonQueryTable/configTree/render/iconRender.js +29 -29
  113. package/src/components/Business/JsonQueryTable/configTree/render/nameRender.js +22 -22
  114. package/src/components/Business/JsonQueryTable/configTree/treeNode.js +116 -116
  115. package/src/components/Business/JsonQueryTable/drawer/index.tsx +12 -12
  116. package/src/components/Business/JsonQueryTable/function.ts +62 -62
  117. package/src/components/Business/JsonQueryTable/index.less +16 -16
  118. package/src/components/Business/JsonQueryTable/index.md +328 -328
  119. package/src/components/Business/JsonQueryTable/index.tsx +320 -320
  120. package/src/components/Business/JsonQueryTable/jsonEditor/index.js +346 -346
  121. package/src/components/Business/JsonQueryTable/jsonEditor/index.less +22 -22
  122. package/src/components/Business/JsonQueryTable/jsonEditor/lint/basicType.js +147 -147
  123. package/src/components/Business/JsonQueryTable/jsonEditor/lint/index.js +389 -389
  124. package/src/components/Business/JsonQueryTable/jsonEditor/suggestions/actions.js +118 -118
  125. package/src/components/Business/JsonQueryTable/jsonEditor/suggestions/dependency.js +22 -22
  126. package/src/components/Business/JsonQueryTable/jsonEditor/suggestions/index.js +21 -21
  127. package/src/components/Business/JsonQueryTable/jsonEditor/suggestions/request.js +65 -65
  128. package/src/components/Business/JsonQueryTable/static.ts +390 -390
  129. package/src/components/Business/SearchSelect/BusinessUtils.ts +1732 -1732
  130. package/src/components/Business/SearchSelect/common.ts +53 -53
  131. package/src/components/Business/SearchSelect/index.md +1319 -1319
  132. package/src/components/Business/SearchSelect/index.tsx +51 -51
  133. package/src/components/Business/SearchSelect/utils.ts +100 -100
  134. package/src/components/Business/StateFlow/index.less +130 -130
  135. package/src/components/Business/StateFlow/index.md +60 -60
  136. package/src/components/Business/StateFlow/index.tsx +29 -29
  137. package/src/components/Business/TreeSearchSelect/index.md +154 -154
  138. package/src/components/Business/TreeSearchSelect/index.tsx +34 -34
  139. package/src/components/Business/TreeSearchSelect/utils.ts +69 -69
  140. package/src/components/Business/columnSettingTable/columnSetting.tsx +764 -764
  141. package/src/components/Business/columnSettingTable/index.less +247 -247
  142. package/src/components/Business/columnSettingTable/index.md +357 -357
  143. package/src/components/Business/columnSettingTable/index.tsx +232 -232
  144. package/src/components/Business/columnSettingTable/sulaSettingTable.tsx +240 -240
  145. package/src/components/Business/columnSettingTable/utils.tsx +68 -68
  146. package/src/components/Business/moreTreeTable/FixedScrollBar.tsx +86 -86
  147. package/src/components/Business/moreTreeTable/hooks/useSticky.ts +21 -21
  148. package/src/components/Business/moreTreeTable/index.less +99 -99
  149. package/src/components/Business/moreTreeTable/index.md +448 -448
  150. package/src/components/Business/moreTreeTable/index.tsx +380 -380
  151. package/src/components/Business/moreTreeTable/utils.ts +126 -126
  152. package/src/components/Functional/AddSelect/helps.ts +14 -14
  153. package/src/components/Functional/AddSelect/index.less +367 -367
  154. package/src/components/Functional/AddSelect/index.md +155 -155
  155. package/src/components/Functional/AddSelect/index.tsx +1279 -1279
  156. package/src/components/Functional/BillEntry/index.less +371 -371
  157. package/src/components/Functional/BillEntry/index.md +39 -39
  158. package/src/components/Functional/BillEntry/index.tsx +772 -772
  159. package/src/components/Functional/BsAntdSula/BsCascader/index.md +62 -0
  160. package/src/components/Functional/BsAntdSula/BsCascader/index.tsx +178 -0
  161. package/src/components/Functional/BsAntdSula/index.ts +2 -0
  162. package/src/components/Functional/DataImport/index.less +63 -63
  163. package/src/components/Functional/DataImport/index.md +44 -44
  164. package/src/components/Functional/DataImport/index.tsx +695 -695
  165. package/src/components/Functional/DataValidation/index.less +63 -63
  166. package/src/components/Functional/DataValidation/index.md +39 -39
  167. package/src/components/Functional/DataValidation/index.tsx +687 -687
  168. package/src/components/Functional/EllipsisTooltip/index.d.ts +5 -0
  169. package/src/components/Functional/EllipsisTooltip/index.js +36 -0
  170. package/src/components/Functional/EllipsisTooltip/index.md +30 -0
  171. package/src/components/Functional/ExportFunctions/ExportIcon/index.md +37 -37
  172. package/src/components/Functional/ExportFunctions/ExportIcon/index.tsx +59 -59
  173. package/src/components/Functional/QueryMutipleInput/index.less +37 -37
  174. package/src/components/Functional/QueryMutipleInput/index.md +33 -33
  175. package/src/components/Functional/QueryMutipleInput/index.tsx +128 -128
  176. package/src/components/Functional/SearchSelect/index.less +115 -115
  177. package/src/components/Functional/SearchSelect/index.md +141 -141
  178. package/src/components/Functional/SearchSelect/index.tsx +849 -849
  179. package/src/components/Functional/SearchSelect/utils.ts +3 -3
  180. package/src/components/Functional/TreeSearchSelect/index.md +47 -47
  181. package/src/components/Functional/TreeSearchSelect/index.tsx +162 -162
  182. package/src/components/Solution/RuleComponent/Formula.tsx +335 -0
  183. package/src/components/Solution/RuleComponent/index.d.ts +29 -0
  184. package/src/components/Solution/RuleComponent/index.js +2028 -0
  185. package/src/components/Solution/RuleComponent/index.less +230 -0
  186. package/src/components/Solution/RuleComponent/renderSpecificAction.js +99 -0
  187. package/src/components/Solution/RuleComponent/ruleFiled.js +2074 -0
  188. package/src/components/Solution/RuleComponent/services.ts +13 -0
  189. package/src/components/Solution/RuleComponent/util.js +139 -0
  190. package/src/index.ts +38 -34
  191. package/src/plugin/TableColumnSetting/index.less +247 -247
  192. package/src/plugin/TableColumnSetting/index.md +50 -50
  193. package/src/plugin/TableColumnSetting/index.tsx +724 -724
  194. package/src/plugin/TableColumnSetting/utils.ts +19 -19
  195. package/src/styles/bsDefault.less +1912 -1912
  196. package/src/utils/CheckOneUser/index.md +39 -39
  197. package/src/utils/CheckOneUser/index.ts +51 -51
  198. package/src/utils/LocalstorageUtils.ts +90 -90
  199. package/src/utils/TableUtils.tsx +18 -18
  200. package/src/utils/checkUtils.ts +39 -39
  201. package/src/utils/enumConfig.ts +11 -11
  202. package/src/utils/getFormMode.js +12 -12
  203. package/src/utils/index.ts +4 -3
  204. package/src/utils/requestUtils.ts +34 -34
  205. package/src/utils/serialize.js +7 -7
  206. package/src/utils/utils.ts +212 -183
  207. package/tsconfig.json +29 -29
  208. package/typings.d.ts +4 -4
package/package.json CHANGED
@@ -1,77 +1,78 @@
1
- {
2
- "name": "@bit-sun/business-component",
3
- "version": "2.2.49",
4
- "scripts": {
5
- "start": "dumi dev",
6
- "docs:build": "dumi build",
7
- "docs:deploy": "gh-pages -d docs-dist",
8
- "build": "father-build",
9
- "deploy": "npm run docs:build && npm run docs:deploy",
10
- "release": "npm run build && npm publish",
11
- "prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
12
- "test": "umi-test",
13
- "test:coverage": "umi-test --coverage"
14
- },
15
- "main": "dist/index.js",
16
- "module": "dist/index.esm.js",
17
- "typings": "dist/index.d.ts",
18
- "gitHooks": {
19
- "pre-commit": "lint-staged"
20
- },
21
- "lint-staged": {
22
- "*.{js,jsx,less,md,json}": [
23
- "prettier --write"
24
- ],
25
- "*.ts?(x)": [
26
- "prettier --parser=typescript --write"
27
- ]
28
- },
29
- "peerDependencies": {
30
- "antd": "^4.17.2",
31
- "bssula": "^2.0.0",
32
- "umi-plugin-bssula": "1.0.13",
33
- "umi": "^3.5.20",
34
- "@ant-design/pro-layout": "^6.5.0",
35
- "react-dnd": "^16.0.1",
36
- "react-dnd-html5-backend": "^16.0.1"
37
- },
38
- "dependencies": {
39
- "@ant-design/icons": "^4.7.0",
40
- "@monaco-editor/react": "^3.3.0",
41
- "serialize-javascript": "^6.0.0",
42
- "@types/react-resizable": "^1.7.4",
43
- "@umijs/plugin-antd": "latest",
44
- "ahooks": "^3.1.2",
45
- "array-move": "^4.0.0",
46
- "axios": "^0.24.0",
47
- "classnames": "^2.3.1",
48
- "lodash": "^4.17.21",
49
- "querystring": "^0.2.1",
50
- "react": "^16.12.0",
51
- "react-beautiful-dnd": "10.0.0",
52
- "react-resizable": "^3.0.4",
53
- "react-sortable-hoc": "^2.0.0",
54
- "warning": "^4.0.3",
55
- "ast-types": "^0.13.3"
56
- },
57
- "devDependencies": {
58
- "@ant-design/pro-layout": "^7.1.3",
59
- "@types/lodash": "^4.14.185",
60
- "@umijs/test": "^3.0.5",
61
- "acorn": "^7.2.0",
62
- "acorn-walk": "^7.1.1",
63
- "antd": "^4.17.2",
64
- "bssula": "^2.1.29",
65
- "dumi": "^1.0.14",
66
- "father-build": "^1.17.2",
67
- "gh-pages": "^3.0.0",
68
- "lint-staged": "^10.0.7",
69
- "prettier": "^2.2.1",
70
- "react-dnd": "^16.0.1",
71
- "react-dnd-html5-backend": "^16.0.1",
72
- "rollup-plugin-commonjs": "^10.1.0"
73
- },
74
- "publishConfig": {
75
- "access": "public"
76
- }
77
- }
1
+ {
2
+ "name": "@bit-sun/business-component",
3
+ "version": "2.3.0",
4
+ "scripts": {
5
+ "start": "dumi dev",
6
+ "docs:build": "dumi build",
7
+ "docs:deploy": "gh-pages -d docs-dist",
8
+ "build": "father-build",
9
+ "deploy": "npm run docs:build && npm run docs:deploy",
10
+ "release": "npm run build && npm publish",
11
+ "prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
12
+ "test": "umi-test",
13
+ "test:coverage": "umi-test --coverage"
14
+ },
15
+ "main": "dist/index.js",
16
+ "module": "dist/index.esm.js",
17
+ "typings": "dist/index.d.ts",
18
+ "gitHooks": {
19
+ "pre-commit": "lint-staged"
20
+ },
21
+ "lint-staged": {
22
+ "*.{js,jsx,less,md,json}": [
23
+ "prettier --write"
24
+ ],
25
+ "*.ts?(x)": [
26
+ "prettier --parser=typescript --write"
27
+ ]
28
+ },
29
+ "peerDependencies": {
30
+ "antd": "^4.17.2",
31
+ "bssula": "^2.0.0",
32
+ "umi-plugin-bssula": "1.0.13",
33
+ "umi": "^3.5.20",
34
+ "@ant-design/pro-layout": "^6.5.0",
35
+ "react-dnd": "^16.0.1",
36
+ "react-dnd-html5-backend": "^16.0.1"
37
+ },
38
+ "dependencies": {
39
+ "@ant-design/icons": "^4.7.0",
40
+ "@monaco-editor/react": "^3.3.0",
41
+ "serialize-javascript": "^6.0.0",
42
+ "@types/react-resizable": "^1.7.4",
43
+ "@umijs/plugin-antd": "latest",
44
+ "ahooks": "^3.1.2",
45
+ "array-move": "^4.0.0",
46
+ "axios": "^0.24.0",
47
+ "classnames": "^2.3.1",
48
+ "lodash": "^4.17.21",
49
+ "moment": "^2.25.3",
50
+ "querystring": "^0.2.1",
51
+ "react": "^16.12.0",
52
+ "react-beautiful-dnd": "10.0.0",
53
+ "react-resizable": "^3.0.4",
54
+ "react-sortable-hoc": "^2.0.0",
55
+ "warning": "^4.0.3",
56
+ "ast-types": "^0.13.3"
57
+ },
58
+ "devDependencies": {
59
+ "@ant-design/pro-layout": "^7.1.3",
60
+ "@types/lodash": "^4.14.185",
61
+ "@umijs/test": "^3.0.5",
62
+ "acorn": "^7.2.0",
63
+ "acorn-walk": "^7.1.1",
64
+ "antd": "^4.17.2",
65
+ "bssula": "^2.1.29",
66
+ "dumi": "^1.0.14",
67
+ "father-build": "^1.17.2",
68
+ "gh-pages": "^3.0.0",
69
+ "lint-staged": "^10.0.7",
70
+ "prettier": "^2.2.1",
71
+ "react-dnd": "^16.0.1",
72
+ "react-dnd-html5-backend": "^16.0.1",
73
+ "rollup-plugin-commonjs": "^10.1.0"
74
+ },
75
+ "publishConfig": {
76
+ "access": "public"
77
+ }
78
+ }
package/src/assets/32.svg CHANGED
@@ -1,28 +1,28 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="36px" height="36px" viewBox="0 0 36 36" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>32</title>
4
- <defs>
5
- <circle id="path-1" cx="15.6097561" cy="15.6097561" r="15.6097561"></circle>
6
- <filter x="-9.6%" y="-9.6%" width="119.2%" height="119.2%" filterUnits="objectBoundingBox" id="filter-2">
7
- <feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
8
- <feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
9
- <feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"></feComposite>
10
- <feColorMatrix values="0 0 0 0 0.949019608 0 0 0 0 0.949019608 0 0 0 0 0.949019608 0 0 0 1 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
11
- </filter>
12
- </defs>
13
- <g id="-----6.1-默认图片/-Default-picture" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
14
- <g id="B-Design-体验规范" transform="translate(-1107.000000, -568.000000)" fill-rule="nonzero">
15
- <g id="客户预设头像" transform="translate(580.000000, 504.000000)">
16
- <g id="默认图片/客户头像2-1" transform="translate(515.000000, 66.000000)">
17
- <g id="32" transform="translate(14.000000, 0.000000)">
18
- <g id="圆形">
19
- <use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
20
- <circle stroke="#FFFFFF" stroke-width="1" stroke-linejoin="square" fill="#EDF4FF" fill-rule="evenodd" cx="15.6097561" cy="15.6097561" r="15.1097561"></circle>
21
- </g>
22
- <path d="M18.7853917,16.3530778 L22.7084785,18.1184669 L22.7084785,23.4146341 L8.58536585,23.4146341 L8.58536585,18.1184669 L12.5084527,16.3530778 L18.7853917,16.3530778 Z M19.3635308,19.6980256 L16.3902439,19.6980256 L16.3902439,21.184669 L19.3635308,21.184669 L19.3635308,19.6980256 Z M15.8327526,7.80487805 C17.9880102,7.80487805 19.7351916,9.55205951 19.7351916,11.7073171 C19.7351916,13.8625746 17.9880102,15.6097561 15.8327526,15.6097561 C13.6774951,15.6097561 11.9303136,13.8625746 11.9303136,11.7073171 C11.9303136,9.55205951 13.6774951,7.80487805 15.8327526,7.80487805 Z" id="形状" fill="#9AC4FF"></path>
23
- </g>
24
- </g>
25
- </g>
26
- </g>
27
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="36px" height="36px" viewBox="0 0 36 36" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>32</title>
4
+ <defs>
5
+ <circle id="path-1" cx="15.6097561" cy="15.6097561" r="15.6097561"></circle>
6
+ <filter x="-9.6%" y="-9.6%" width="119.2%" height="119.2%" filterUnits="objectBoundingBox" id="filter-2">
7
+ <feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
8
+ <feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
9
+ <feComposite in="shadowBlurOuter1" in2="SourceAlpha" operator="out" result="shadowBlurOuter1"></feComposite>
10
+ <feColorMatrix values="0 0 0 0 0.949019608 0 0 0 0 0.949019608 0 0 0 0 0.949019608 0 0 0 1 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
11
+ </filter>
12
+ </defs>
13
+ <g id="-----6.1-默认图片/-Default-picture" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
14
+ <g id="B-Design-体验规范" transform="translate(-1107.000000, -568.000000)" fill-rule="nonzero">
15
+ <g id="客户预设头像" transform="translate(580.000000, 504.000000)">
16
+ <g id="默认图片/客户头像2-1" transform="translate(515.000000, 66.000000)">
17
+ <g id="32" transform="translate(14.000000, 0.000000)">
18
+ <g id="圆形">
19
+ <use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
20
+ <circle stroke="#FFFFFF" stroke-width="1" stroke-linejoin="square" fill="#EDF4FF" fill-rule="evenodd" cx="15.6097561" cy="15.6097561" r="15.1097561"></circle>
21
+ </g>
22
+ <path d="M18.7853917,16.3530778 L22.7084785,18.1184669 L22.7084785,23.4146341 L8.58536585,23.4146341 L8.58536585,18.1184669 L12.5084527,16.3530778 L18.7853917,16.3530778 Z M19.3635308,19.6980256 L16.3902439,19.6980256 L16.3902439,21.184669 L19.3635308,21.184669 L19.3635308,19.6980256 Z M15.8327526,7.80487805 C17.9880102,7.80487805 19.7351916,9.55205951 19.7351916,11.7073171 C19.7351916,13.8625746 17.9880102,15.6097561 15.8327526,15.6097561 C13.6774951,15.6097561 11.9303136,13.8625746 11.9303136,11.7073171 C11.9303136,9.55205951 13.6774951,7.80487805 15.8327526,7.80487805 Z" id="形状" fill="#9AC4FF"></path>
23
+ </g>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </g>
28
28
  </svg>
@@ -1,18 +1,18 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>编组 14@1x</title>
4
- <g id="全局导航相关功能需求设计" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="自定义左侧菜单" transform="translate(-21.000000, -71.000000)">
6
- <g id="编组-6" transform="translate(0.000000, 60.000000)">
7
- <g id="编组-15" transform="translate(21.000000, 10.000000)">
8
- <g id="编组-14" transform="translate(0.000000, 1.000000)">
9
- <rect id="矩形" fill="#D8D8D8" opacity="0" x="0" y="0" width="24" height="24"></rect>
10
- <g id="编组" transform="translate(4.000000, 4.000000)" fill="#B1BAD4" fill-rule="nonzero">
11
- <path d="M8,0 C12.4183529,0 16,3.58164706 16,8 C16,12.4183529 12.4183529,16 8,16 C3.58164706,16 0,12.4183529 0,8 C0,3.58164706 3.58164706,0 8,0 Z M8,1.4117647 C4.36141178,1.4117647 1.4117647,4.36141175 1.4117647,8 C1.4117647,11.6385882 4.36141175,14.5882353 8,14.5882353 C11.6385882,14.5882353 14.5882353,11.6385882 14.5882353,8 C14.5882353,4.36141175 11.6385882,1.4117647 8,1.4117647 Z M8.70588235,3.76470589 L8.70588235,7.29411765 L12.2352941,7.29411765 L12.2352941,8.70588235 L8.70588235,8.70588235 L8.70588235,12.2352941 L7.29411765,12.2352941 L7.29411765,8.70541177 L3.76470589,8.70588235 L3.76470589,7.29411765 L7.29411765,7.29364707 L7.29411765,3.76470589 L8.70588235,3.76470589 Z" id="形状"></path>
12
- </g>
13
- </g>
14
- </g>
15
- </g>
16
- </g>
17
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 14@1x</title>
4
+ <g id="全局导航相关功能需求设计" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="自定义左侧菜单" transform="translate(-21.000000, -71.000000)">
6
+ <g id="编组-6" transform="translate(0.000000, 60.000000)">
7
+ <g id="编组-15" transform="translate(21.000000, 10.000000)">
8
+ <g id="编组-14" transform="translate(0.000000, 1.000000)">
9
+ <rect id="矩形" fill="#D8D8D8" opacity="0" x="0" y="0" width="24" height="24"></rect>
10
+ <g id="编组" transform="translate(4.000000, 4.000000)" fill="#B1BAD4" fill-rule="nonzero">
11
+ <path d="M8,0 C12.4183529,0 16,3.58164706 16,8 C16,12.4183529 12.4183529,16 8,16 C3.58164706,16 0,12.4183529 0,8 C0,3.58164706 3.58164706,0 8,0 Z M8,1.4117647 C4.36141178,1.4117647 1.4117647,4.36141175 1.4117647,8 C1.4117647,11.6385882 4.36141175,14.5882353 8,14.5882353 C11.6385882,14.5882353 14.5882353,11.6385882 14.5882353,8 C14.5882353,4.36141175 11.6385882,1.4117647 8,1.4117647 Z M8.70588235,3.76470589 L8.70588235,7.29411765 L12.2352941,7.29411765 L12.2352941,8.70588235 L8.70588235,8.70588235 L8.70588235,12.2352941 L7.29411765,12.2352941 L7.29411765,8.70541177 L3.76470589,8.70588235 L3.76470589,7.29411765 L7.29411765,7.29364707 L7.29411765,3.76470589 L8.70588235,3.76470589 Z" id="形状"></path>
12
+ </g>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </g>
17
+ </g>
18
18
  </svg>
@@ -1,28 +1,28 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>icon</title>
4
- <defs>
5
- <rect id="path-1" x="0" y="0" width="24" height="24"></rect>
6
- </defs>
7
- <g id="全局导航相关功能需求设计" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
8
- <g id="自定义左侧菜单" transform="translate(-20.000000, -1016.000000)">
9
- <g id="编组-6" transform="translate(0.000000, 60.000000)">
10
- <g id="编组-5备份" transform="translate(0.000000, 900.000000)">
11
- <g id="查看全部功能" transform="translate(10.000000, 46.000000)">
12
- <g id="icon" transform="translate(10.000000, 10.000000)">
13
- <mask id="mask-2" fill="white">
14
- <use xlink:href="#path-1"></use>
15
- </mask>
16
- <use id="navigation-icon-allfunctions" fill="#D8D8D8" opacity="0" xlink:href="#path-1"></use>
17
- <g id="category" mask="url(#mask-2)" fill="#B1BAD4" fill-rule="nonzero">
18
- <g transform="translate(3.000000, 5.000000)" id="形状">
19
- <path d="M2.24999999,12.3585414 L2.24999999,14 L0,14 L0,12.3585414 L2.24999999,12.3585414 Z M18,12.3585414 L18,14 L3.375,14 L3.375,12.3585414 L18,12.3585414 Z M2.24999999,6.17954431 L2.24999999,7.82100286 L0,7.82100286 L0,6.17954431 L2.24999999,6.17954431 L2.24999999,6.17954431 Z M18,6.17954431 L18,7.82100286 L3.375,7.82100286 L3.375,6.17954431 L18,6.17954431 L18,6.17954431 Z M2.24999999,0 L2.24999999,1.64145855 L0,1.64145855 L0,0 L2.24999999,0 L2.24999999,0 Z M18,0 L18,1.64145855 L3.375,1.64145855 L3.375,0 L18,0 L18,0 Z"></path>
20
- </g>
21
- </g>
22
- </g>
23
- </g>
24
- </g>
25
- </g>
26
- </g>
27
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>icon</title>
4
+ <defs>
5
+ <rect id="path-1" x="0" y="0" width="24" height="24"></rect>
6
+ </defs>
7
+ <g id="全局导航相关功能需求设计" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
8
+ <g id="自定义左侧菜单" transform="translate(-20.000000, -1016.000000)">
9
+ <g id="编组-6" transform="translate(0.000000, 60.000000)">
10
+ <g id="编组-5备份" transform="translate(0.000000, 900.000000)">
11
+ <g id="查看全部功能" transform="translate(10.000000, 46.000000)">
12
+ <g id="icon" transform="translate(10.000000, 10.000000)">
13
+ <mask id="mask-2" fill="white">
14
+ <use xlink:href="#path-1"></use>
15
+ </mask>
16
+ <use id="navigation-icon-allfunctions" fill="#D8D8D8" opacity="0" xlink:href="#path-1"></use>
17
+ <g id="category" mask="url(#mask-2)" fill="#B1BAD4" fill-rule="nonzero">
18
+ <g transform="translate(3.000000, 5.000000)" id="形状">
19
+ <path d="M2.24999999,12.3585414 L2.24999999,14 L0,14 L0,12.3585414 L2.24999999,12.3585414 Z M18,12.3585414 L18,14 L3.375,14 L3.375,12.3585414 L18,12.3585414 Z M2.24999999,6.17954431 L2.24999999,7.82100286 L0,7.82100286 L0,6.17954431 L2.24999999,6.17954431 L2.24999999,6.17954431 Z M18,6.17954431 L18,7.82100286 L3.375,7.82100286 L3.375,6.17954431 L18,6.17954431 L18,6.17954431 Z M2.24999999,0 L2.24999999,1.64145855 L0,1.64145855 L0,0 L2.24999999,0 L2.24999999,0 Z M18,0 L18,1.64145855 L3.375,1.64145855 L3.375,0 L18,0 L18,0 Z"></path>
20
+ </g>
21
+ </g>
22
+ </g>
23
+ </g>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </g>
28
28
  </svg>
@@ -1,25 +1,25 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>编组 186备份 3</title>
4
- <g id="全局导航相关功能需求设计" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="自定义菜单" transform="translate(-949.000000, -484.000000)" fill-rule="nonzero">
6
- <g id="编组-8" transform="translate(534.000000, 180.000000)">
7
- <g id="类目一备份-101" transform="translate(31.000000, 298.000000)">
8
- <g id="编组-186备份-2" transform="translate(384.000000, 6.000000)">
9
- <g id="编组-132备份-85" opacity="0">
10
- <path d="M24,0 L24,24 L0,24 L0,0 L24,0 Z M23.765625,0.234375 L0.234375,0.234375 L0.234375,23.765625 L23.765625,23.765625 L23.765625,0.234375 Z" id="矩形备份-235" fill="#979797"></path>
11
- <path d="M21.39,2.64 L21.39,21.39 L2.64,21.39 L2.64,2.64 L21.39,2.64 Z M21.155625,2.874375 L2.874375,2.874375 L2.874375,21.155625 L21.155625,21.155625 L21.155625,2.874375 Z" id="矩形备份-236" fill="#979797"></path>
12
- <path d="M20.22,1.56 L20.22,22.56 L3.72,22.56 L3.72,1.56 L20.22,1.56 Z M19.985625,1.794375 L3.954375,1.794375 L3.954375,22.325625 L19.985625,22.325625 L19.985625,1.794375 Z" id="矩形备份-237" fill="#FA6400"></path>
13
- <path d="M22.56,3.72 L22.56,20.22 L1.56,20.22 L1.56,3.72 L22.56,3.72 Z M22.325625,3.954375 L1.794375,3.954375 L1.794375,19.985625 L22.325625,19.985625 L22.325625,3.954375 Z" id="矩形备份-238" fill="#44D7B6"></path>
14
- <path d="M12.06,1.56 C17.8589899,1.56 22.56,6.26101013 22.56,12.06 C22.56,17.8589899 17.8589899,22.56 12.06,22.56 C6.26101013,22.56 1.56,17.8589899 1.56,12.06 C1.56,6.26101013 6.26101013,1.56 12.06,1.56 Z M12.06,1.794375 C6.39045187,1.794375 1.794375,6.39045187 1.794375,12.06 C1.794375,17.7295481 6.39045187,22.325625 12.06,22.325625 C17.7295481,22.325625 22.325625,17.7295481 22.325625,12.06 C22.325625,6.39045187 17.7295481,1.794375 12.06,1.794375 Z" id="椭圆形备份-59" fill="#F7B500"></path>
15
- </g>
16
- <g id="编组备份-43" transform="translate(1.560000, 1.680000)" fill="#999999">
17
- <path d="M10.44,0 C16.2059506,0 20.88,4.67404941 20.88,10.44 C20.88,16.2059506 16.2059506,20.88 10.44,20.88 C4.67404941,20.88 0,16.2059506 0,10.44 C0,4.67404941 4.67404941,0 10.44,0 Z M10.44,1.84235294 C5.69164237,1.84235294 1.84235294,5.69164234 1.84235294,10.44 C1.84235294,15.1883577 5.69164234,19.0376471 10.44,19.0376471 C15.1883577,19.0376471 19.0376471,15.1883577 19.0376471,10.44 C19.0376471,5.69164234 15.1883577,1.84235294 10.44,1.84235294 Z" id="形状"></path>
18
- <polygon id="形状" points="10.4408066 6.32 14.3966662 10.2757133 10.4408066 14.2314265 9.2540487 13.0447125 11.1949264 11.1039067 6 11.1033618 6 9.42518043 11.1725861 9.42518043 9.25459358 7.50671398 10.4408066 6.32"></polygon>
19
- </g>
20
- </g>
21
- </g>
22
- </g>
23
- </g>
24
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 186备份 3</title>
4
+ <g id="全局导航相关功能需求设计" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="自定义菜单" transform="translate(-949.000000, -484.000000)" fill-rule="nonzero">
6
+ <g id="编组-8" transform="translate(534.000000, 180.000000)">
7
+ <g id="类目一备份-101" transform="translate(31.000000, 298.000000)">
8
+ <g id="编组-186备份-2" transform="translate(384.000000, 6.000000)">
9
+ <g id="编组-132备份-85" opacity="0">
10
+ <path d="M24,0 L24,24 L0,24 L0,0 L24,0 Z M23.765625,0.234375 L0.234375,0.234375 L0.234375,23.765625 L23.765625,23.765625 L23.765625,0.234375 Z" id="矩形备份-235" fill="#979797"></path>
11
+ <path d="M21.39,2.64 L21.39,21.39 L2.64,21.39 L2.64,2.64 L21.39,2.64 Z M21.155625,2.874375 L2.874375,2.874375 L2.874375,21.155625 L21.155625,21.155625 L21.155625,2.874375 Z" id="矩形备份-236" fill="#979797"></path>
12
+ <path d="M20.22,1.56 L20.22,22.56 L3.72,22.56 L3.72,1.56 L20.22,1.56 Z M19.985625,1.794375 L3.954375,1.794375 L3.954375,22.325625 L19.985625,22.325625 L19.985625,1.794375 Z" id="矩形备份-237" fill="#FA6400"></path>
13
+ <path d="M22.56,3.72 L22.56,20.22 L1.56,20.22 L1.56,3.72 L22.56,3.72 Z M22.325625,3.954375 L1.794375,3.954375 L1.794375,19.985625 L22.325625,19.985625 L22.325625,3.954375 Z" id="矩形备份-238" fill="#44D7B6"></path>
14
+ <path d="M12.06,1.56 C17.8589899,1.56 22.56,6.26101013 22.56,12.06 C22.56,17.8589899 17.8589899,22.56 12.06,22.56 C6.26101013,22.56 1.56,17.8589899 1.56,12.06 C1.56,6.26101013 6.26101013,1.56 12.06,1.56 Z M12.06,1.794375 C6.39045187,1.794375 1.794375,6.39045187 1.794375,12.06 C1.794375,17.7295481 6.39045187,22.325625 12.06,22.325625 C17.7295481,22.325625 22.325625,17.7295481 22.325625,12.06 C22.325625,6.39045187 17.7295481,1.794375 12.06,1.794375 Z" id="椭圆形备份-59" fill="#F7B500"></path>
15
+ </g>
16
+ <g id="编组备份-43" transform="translate(1.560000, 1.680000)" fill="#999999">
17
+ <path d="M10.44,0 C16.2059506,0 20.88,4.67404941 20.88,10.44 C20.88,16.2059506 16.2059506,20.88 10.44,20.88 C4.67404941,20.88 0,16.2059506 0,10.44 C0,4.67404941 4.67404941,0 10.44,0 Z M10.44,1.84235294 C5.69164237,1.84235294 1.84235294,5.69164234 1.84235294,10.44 C1.84235294,15.1883577 5.69164234,19.0376471 10.44,19.0376471 C15.1883577,19.0376471 19.0376471,15.1883577 19.0376471,10.44 C19.0376471,5.69164234 15.1883577,1.84235294 10.44,1.84235294 Z" id="形状"></path>
18
+ <polygon id="形状" points="10.4408066 6.32 14.3966662 10.2757133 10.4408066 14.2314265 9.2540487 13.0447125 11.1949264 11.1039067 6 11.1033618 6 9.42518043 11.1725861 9.42518043 9.25459358 7.50671398 10.4408066 6.32"></polygon>
19
+ </g>
20
+ </g>
21
+ </g>
22
+ </g>
23
+ </g>
24
+ </g>
25
25
  </svg>
@@ -1,30 +1,30 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>筛选-状态一备份 2</title>
4
- <defs>
5
- <rect id="path-1" x="0" y="0" width="20" height="20"></rect>
6
- </defs>
7
- <g id="顶部导航" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
8
- <g id="最新框架-下拉式展开" transform="translate(-1665.000000, -94.000000)">
9
- <g id="编组-7" transform="translate(160.000000, 50.000000)">
10
- <g id="tab导航备份-7" transform="translate(0.000000, 26.000000)">
11
- <g id="编组-10" transform="translate(1339.000000, 12.000000)">
12
- <g id="搜索三件套备份-5" transform="translate(156.000000, 0.000000)">
13
- <g id="筛选-状态一" transform="translate(10.000000, 6.000000)">
14
- <mask id="mask-2" fill="white">
15
- <use xlink:href="#path-1"></use>
16
- </mask>
17
- <use id="蒙版" fill="#D8D8D8" opacity="0" xlink:href="#path-1"></use>
18
- <g id="编组" mask="url(#mask-2)" fill="#FFFFFF" fill-rule="nonzero">
19
- <g transform="translate(4.000000, 3.000000)" id="形状">
20
- <path d="M2.994,4.13446555 L3.51440001,11.7596603 L8.6112,11.7596603 L9.13120001,4.13446555 L10.3332,4.13446555 L9.80800001,11.8468976 C9.76369693,12.4963619 9.24110169,12.9998762 8.6112,13 L3.51440001,13 C2.88435477,12.9998609 2.36170317,12.4961118 2.31760001,11.8464841 L1.7916,4.13446555 L2.994,4.13446555 Z M5.60600001,4.51855739 L5.60600001,10.3068092 L4.40600001,10.3068092 L4.40600001,4.51855739 L5.60600001,4.51855739 Z M7.8,4.51855739 L7.8,10.3068092 L6.6,10.3068092 L6.6,4.51855739 L7.8,4.51855739 Z M0,2.06723278 L12,2.06723278 L12,3.30757244 L0,3.30757244 L0,2.06723278 Z M8.50280001,0 L8.50280001,1.24033966 L3.70280001,1.24033966 L3.70280001,0 L8.50280001,0 Z"></path>
21
- </g>
22
- </g>
23
- </g>
24
- </g>
25
- </g>
26
- </g>
27
- </g>
28
- </g>
29
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>筛选-状态一备份 2</title>
4
+ <defs>
5
+ <rect id="path-1" x="0" y="0" width="20" height="20"></rect>
6
+ </defs>
7
+ <g id="顶部导航" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
8
+ <g id="最新框架-下拉式展开" transform="translate(-1665.000000, -94.000000)">
9
+ <g id="编组-7" transform="translate(160.000000, 50.000000)">
10
+ <g id="tab导航备份-7" transform="translate(0.000000, 26.000000)">
11
+ <g id="编组-10" transform="translate(1339.000000, 12.000000)">
12
+ <g id="搜索三件套备份-5" transform="translate(156.000000, 0.000000)">
13
+ <g id="筛选-状态一" transform="translate(10.000000, 6.000000)">
14
+ <mask id="mask-2" fill="white">
15
+ <use xlink:href="#path-1"></use>
16
+ </mask>
17
+ <use id="蒙版" fill="#D8D8D8" opacity="0" xlink:href="#path-1"></use>
18
+ <g id="编组" mask="url(#mask-2)" fill="#FFFFFF" fill-rule="nonzero">
19
+ <g transform="translate(4.000000, 3.000000)" id="形状">
20
+ <path d="M2.994,4.13446555 L3.51440001,11.7596603 L8.6112,11.7596603 L9.13120001,4.13446555 L10.3332,4.13446555 L9.80800001,11.8468976 C9.76369693,12.4963619 9.24110169,12.9998762 8.6112,13 L3.51440001,13 C2.88435477,12.9998609 2.36170317,12.4961118 2.31760001,11.8464841 L1.7916,4.13446555 L2.994,4.13446555 Z M5.60600001,4.51855739 L5.60600001,10.3068092 L4.40600001,10.3068092 L4.40600001,4.51855739 L5.60600001,4.51855739 Z M7.8,4.51855739 L7.8,10.3068092 L6.6,10.3068092 L6.6,4.51855739 L7.8,4.51855739 Z M0,2.06723278 L12,2.06723278 L12,3.30757244 L0,3.30757244 L0,2.06723278 Z M8.50280001,0 L8.50280001,1.24033966 L3.70280001,1.24033966 L3.70280001,0 L8.50280001,0 Z"></path>
21
+ </g>
22
+ </g>
23
+ </g>
24
+ </g>
25
+ </g>
26
+ </g>
27
+ </g>
28
+ </g>
29
+ </g>
30
30
  </svg>
@@ -1,20 +1,20 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="20px" height="20px" viewBox="0 0 20 20" 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="顶部导航" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="最新框架-下拉式展开" transform="translate(-1509.000000, -94.000000)">
6
- <g id="编组-7" transform="translate(160.000000, 50.000000)">
7
- <g id="tab导航备份-7" transform="translate(0.000000, 26.000000)">
8
- <g id="编组-10" transform="translate(1339.000000, 12.000000)">
9
- <g id="编组-2" transform="translate(10.000000, 6.000000)">
10
- <rect id="蒙版" fill="#D8D8D8" opacity="0" x="0" y="0" width="20" height="20"></rect>
11
- <g id="编组" transform="translate(3.000000, 4.000000)" fill="#FFFFFF" fill-rule="nonzero">
12
- <path d="M10.389993,0 L10.389993,1.3 L1.27053272,1.3 L1.27053272,10.8333333 L11.4347944,10.8333333 L11.4347944,6.06666667 L12.7053272,6.06666667 L12.7053272,10.8333333 C12.7053272,11.5513035 12.1364903,12.1333333 11.4347944,12.1333333 L1.27053272,12.1333333 C0.568836873,12.1333333 0,11.5513035 0,10.8333333 L0,1.3 C0,0.582029825 0.568836873,0 1.27053272,0 L10.389993,0 Z M13.1046979,0.492266673 L14,1.4144 L7.17639229,8.34686666 L7.17893335,8.34946666 L6.25398553,8.38153334 L6.28024322,7.42126667 L6.28193725,7.42343334 L13.1046979,0.492266673 L13.1046979,0.492266673 Z" id="形状"></path>
13
- </g>
14
- </g>
15
- </g>
16
- </g>
17
- </g>
18
- </g>
19
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="20px" height="20px" viewBox="0 0 20 20" 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="顶部导航" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="最新框架-下拉式展开" transform="translate(-1509.000000, -94.000000)">
6
+ <g id="编组-7" transform="translate(160.000000, 50.000000)">
7
+ <g id="tab导航备份-7" transform="translate(0.000000, 26.000000)">
8
+ <g id="编组-10" transform="translate(1339.000000, 12.000000)">
9
+ <g id="编组-2" transform="translate(10.000000, 6.000000)">
10
+ <rect id="蒙版" fill="#D8D8D8" opacity="0" x="0" y="0" width="20" height="20"></rect>
11
+ <g id="编组" transform="translate(3.000000, 4.000000)" fill="#FFFFFF" fill-rule="nonzero">
12
+ <path d="M10.389993,0 L10.389993,1.3 L1.27053272,1.3 L1.27053272,10.8333333 L11.4347944,10.8333333 L11.4347944,6.06666667 L12.7053272,6.06666667 L12.7053272,10.8333333 C12.7053272,11.5513035 12.1364903,12.1333333 11.4347944,12.1333333 L1.27053272,12.1333333 C0.568836873,12.1333333 0,11.5513035 0,10.8333333 L0,1.3 C0,0.582029825 0.568836873,0 1.27053272,0 L10.389993,0 Z M13.1046979,0.492266673 L14,1.4144 L7.17639229,8.34686666 L7.17893335,8.34946666 L6.25398553,8.38153334 L6.28024322,7.42126667 L6.28193725,7.42343334 L13.1046979,0.492266673 L13.1046979,0.492266673 Z" id="形状"></path>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ </g>
20
20
  </svg>
@@ -1,18 +1,18 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>编组 14</title>
4
- <g id="顶部导航" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="最新框架-下拉式展开" transform="translate(-1743.000000, -94.000000)">
6
- <g id="编组-7" transform="translate(160.000000, 50.000000)">
7
- <g id="tab导航备份-7" transform="translate(0.000000, 26.000000)">
8
- <g id="编组-3" transform="translate(1573.000000, 12.000000)">
9
- <g id="编组-2" transform="translate(10.000000, 6.000000)">
10
- <rect id="蒙版" fill="#D8D8D8" opacity="0" x="0" y="0" width="20" height="20"></rect>
11
- <polygon id="路径" fill="#FFFFFF" fill-rule="nonzero" transform="translate(10.500000, 10.022232) rotate(-90.000000) translate(-10.500000, -10.022232) " points="14 4.9775377 13.0224623 4 7 10.0252289 13.0220012 16.0444635 14 15.0660036 8.95599763 10.0247678"></polygon>
12
- </g>
13
- </g>
14
- </g>
15
- </g>
16
- </g>
17
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 14</title>
4
+ <g id="顶部导航" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="最新框架-下拉式展开" transform="translate(-1743.000000, -94.000000)">
6
+ <g id="编组-7" transform="translate(160.000000, 50.000000)">
7
+ <g id="tab导航备份-7" transform="translate(0.000000, 26.000000)">
8
+ <g id="编组-3" transform="translate(1573.000000, 12.000000)">
9
+ <g id="编组-2" transform="translate(10.000000, 6.000000)">
10
+ <rect id="蒙版" fill="#D8D8D8" opacity="0" x="0" y="0" width="20" height="20"></rect>
11
+ <polygon id="路径" fill="#FFFFFF" fill-rule="nonzero" transform="translate(10.500000, 10.022232) rotate(-90.000000) translate(-10.500000, -10.022232) " points="14 4.9775377 13.0224623 4 7 10.0252289 13.0220012 16.0444635 14 15.0660036 8.95599763 10.0247678"></polygon>
12
+ </g>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </g>
17
+ </g>
18
18
  </svg>
@@ -1,20 +1,20 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
- <title>编组 13</title>
4
- <g id="顶部导航" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
- <g id="最新框架-下拉式展开" transform="translate(-1587.000000, -94.000000)">
6
- <g id="编组-7" transform="translate(160.000000, 50.000000)">
7
- <g id="tab导航备份-7" transform="translate(0.000000, 26.000000)">
8
- <g id="编组-10" transform="translate(1339.000000, 12.000000)">
9
- <g id="编组-5" transform="translate(78.000000, 0.000000)">
10
- <g id="编组-4" transform="translate(10.000000, 6.000000)">
11
- <rect id="蒙版" fill="#D8D8D8" opacity="0" x="0" y="0" width="20" height="20"></rect>
12
- <path d="M10,3 C13.8660588,3 17,6.13394117 17,10 C17,13.8660588 13.8660588,17 10,17 C6.13394117,17 3,13.8660588 3,10 C3,6.13394117 6.13394117,3 10,3 Z M10,4.23529412 C6.8162353,4.23529412 4.23529412,6.81623528 4.23529412,10 C4.23529412,13.1837647 6.81623528,15.7647059 10,15.7647059 C13.1837647,15.7647059 15.7647059,13.1837647 15.7647059,10 C15.7647059,6.81623528 13.1837647,4.23529412 10,4.23529412 Z M13.2628235,6.68735294 L14.1489412,7.54794118 L8.90223529,12.947 L6.26117647,10.2071177 L7.15058823,9.34982354 L8.90594117,11.1706471 L13.2628235,6.68735294 Z" id="形状" fill="#FFFFFF" fill-rule="nonzero"></path>
13
- </g>
14
- </g>
15
- </g>
16
- </g>
17
- </g>
18
- </g>
19
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <title>编组 13</title>
4
+ <g id="顶部导航" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
5
+ <g id="最新框架-下拉式展开" transform="translate(-1587.000000, -94.000000)">
6
+ <g id="编组-7" transform="translate(160.000000, 50.000000)">
7
+ <g id="tab导航备份-7" transform="translate(0.000000, 26.000000)">
8
+ <g id="编组-10" transform="translate(1339.000000, 12.000000)">
9
+ <g id="编组-5" transform="translate(78.000000, 0.000000)">
10
+ <g id="编组-4" transform="translate(10.000000, 6.000000)">
11
+ <rect id="蒙版" fill="#D8D8D8" opacity="0" x="0" y="0" width="20" height="20"></rect>
12
+ <path d="M10,3 C13.8660588,3 17,6.13394117 17,10 C17,13.8660588 13.8660588,17 10,17 C6.13394117,17 3,13.8660588 3,10 C3,6.13394117 6.13394117,3 10,3 Z M10,4.23529412 C6.8162353,4.23529412 4.23529412,6.81623528 4.23529412,10 C4.23529412,13.1837647 6.81623528,15.7647059 10,15.7647059 C13.1837647,15.7647059 15.7647059,13.1837647 15.7647059,10 C15.7647059,6.81623528 13.1837647,4.23529412 10,4.23529412 Z M13.2628235,6.68735294 L14.1489412,7.54794118 L8.90223529,12.947 L6.26117647,10.2071177 L7.15058823,9.34982354 L8.90594117,11.1706471 L13.2628235,6.68735294 Z" id="形状" fill="#FFFFFF" fill-rule="nonzero"></path>
13
+ </g>
14
+ </g>
15
+ </g>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ </g>
20
20
  </svg>
@@ -1,12 +1,12 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="48px" height="48px" viewBox="0 0 48 48" 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(-20.000000, -19.000000)">
6
- <g id="编组" transform="translate(20.000000, 19.000000)">
7
- <rect id="矩形" fill="#005CFF" opacity="0" x="0" y="0" width="48" height="48"></rect>
8
- <path d="M34.4,30.5 L34.4,33.1 L13.6,33.1 L13.6,30.5 L34.4,30.5 Z M34.4,22.7 L34.4,25.3 L13.6,25.3 L13.6,22.7 L34.4,22.7 Z M34.4,14.9 L34.4,17.5 L13.6,17.5 L13.6,14.9 L34.4,14.9 Z" id="nav-line-导航入口" fill="#FFFFFF"></path>
9
- </g>
10
- </g>
11
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="48px" height="48px" viewBox="0 0 48 48" 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(-20.000000, -19.000000)">
6
+ <g id="编组" transform="translate(20.000000, 19.000000)">
7
+ <rect id="矩形" fill="#005CFF" opacity="0" x="0" y="0" width="48" height="48"></rect>
8
+ <path d="M34.4,30.5 L34.4,33.1 L13.6,33.1 L13.6,30.5 L34.4,30.5 Z M34.4,22.7 L34.4,25.3 L13.6,25.3 L13.6,22.7 L34.4,22.7 Z M34.4,14.9 L34.4,17.5 L13.6,17.5 L13.6,14.9 L34.4,14.9 Z" id="nav-line-导航入口" fill="#FFFFFF"></path>
9
+ </g>
10
+ </g>
11
+ </g>
12
12
  </svg>