mooho-base-admin-plus 0.1.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 (283) hide show
  1. package/.env +5 -0
  2. package/.env.development +0 -0
  3. package/.env.production +0 -0
  4. package/.eslintignore +11 -0
  5. package/.eslintrc.js +47 -0
  6. package/.prettierrc +15 -0
  7. package/README.md +18 -0
  8. package/dist/favicon.ico +0 -0
  9. package/dist/mooho-base-admin-plus.min.esm.js +131746 -0
  10. package/dist/mooho-base-admin-plus.min.js +279 -0
  11. package/dist/setting.js +31 -0
  12. package/dist/static/images/app-barcode.png +0 -0
  13. package/dist/static/images/login/bg.png +0 -0
  14. package/dist/static/images/login/logo.png +0 -0
  15. package/dist/static/images/login/password-active.png +0 -0
  16. package/dist/static/images/login/password-default.png +0 -0
  17. package/dist/static/images/login/signIn-img.png +0 -0
  18. package/dist/static/images/login/user-active.png +0 -0
  19. package/dist/static/images/login/user-default.png +0 -0
  20. package/dist/static/images/logo-dark.png +0 -0
  21. package/dist/static/images/logo-small.png +0 -0
  22. package/dist/static/images/logo.png +0 -0
  23. package/dist/static/images/logo.svg +510 -0
  24. package/dist/static/images/no-image.png +0 -0
  25. package/dist/style.css +4 -0
  26. package/index.html +18 -0
  27. package/other/pda.vue +28 -0
  28. package/package.json +59 -0
  29. package/public/favicon.ico +0 -0
  30. package/public/setting.js +31 -0
  31. package/public/static/images/app-barcode.png +0 -0
  32. package/public/static/images/login/bg.png +0 -0
  33. package/public/static/images/login/logo.png +0 -0
  34. package/public/static/images/login/password-active.png +0 -0
  35. package/public/static/images/login/password-default.png +0 -0
  36. package/public/static/images/login/signIn-img.png +0 -0
  37. package/public/static/images/login/user-active.png +0 -0
  38. package/public/static/images/login/user-default.png +0 -0
  39. package/public/static/images/logo-dark.png +0 -0
  40. package/public/static/images/logo-small.png +0 -0
  41. package/public/static/images/logo.png +0 -0
  42. package/public/static/images/logo.svg +510 -0
  43. package/public/static/images/no-image.png +0 -0
  44. package/src/App.vue +60 -0
  45. package/src/api/application.js +35 -0
  46. package/src/api/customModel.js +187 -0
  47. package/src/api/customPage.js +15 -0
  48. package/src/api/customTable.js +24 -0
  49. package/src/api/dataSource.js +93 -0
  50. package/src/api/dataView.js +199 -0
  51. package/src/api/dictType.js +23 -0
  52. package/src/api/entityView.js +13 -0
  53. package/src/api/enum.js +15 -0
  54. package/src/api/filterColumn.js +16 -0
  55. package/src/api/model.js +244 -0
  56. package/src/api/movePlan.js +29 -0
  57. package/src/api/notification.js +28 -0
  58. package/src/api/openApiPermission.js +25 -0
  59. package/src/api/permission.js +51 -0
  60. package/src/api/planJob.js +15 -0
  61. package/src/api/process.js +23 -0
  62. package/src/api/processDef.js +36 -0
  63. package/src/api/processInst.js +16 -0
  64. package/src/api/rolePermission.js +17 -0
  65. package/src/api/roleProperty.js +36 -0
  66. package/src/api/shortcut.js +20 -0
  67. package/src/api/system.js +23 -0
  68. package/src/api/task.js +56 -0
  69. package/src/api/taskQueue.js +24 -0
  70. package/src/api/user.js +45 -0
  71. package/src/api/viewColumn.js +16 -0
  72. package/src/assets/svg/body.svg +17 -0
  73. package/src/assets/svg/header-theme-dark.svg +40 -0
  74. package/src/assets/svg/header-theme-primary.svg +40 -0
  75. package/src/assets/svg/header-top.svg +40 -0
  76. package/src/assets/svg/icon-happy.svg +1 -0
  77. package/src/assets/svg/icon-sad.svg +1 -0
  78. package/src/assets/svg/icon-social-bilibili.svg +1 -0
  79. package/src/assets/svg/icon-social-dingding.svg +1 -0
  80. package/src/assets/svg/icon-social-facebook.svg +1 -0
  81. package/src/assets/svg/icon-social-juejin.svg +1 -0
  82. package/src/assets/svg/icon-social-qq.svg +1 -0
  83. package/src/assets/svg/icon-social-twitter.svg +1 -0
  84. package/src/assets/svg/icon-social-wechat.svg +1 -0
  85. package/src/assets/svg/icon-social-weibo.svg +1 -0
  86. package/src/assets/svg/icon-social-zhihu.svg +1 -0
  87. package/src/assets/svg/nav-theme-dark.svg +40 -0
  88. package/src/assets/svg/nav-theme-light.svg +40 -0
  89. package/src/components/copyright/index.vue +28 -0
  90. package/src/components/home/notice-list.vue +62 -0
  91. package/src/components/home/shortcut.vue +125 -0
  92. package/src/components/input/dialog-select.vue +301 -0
  93. package/src/components/input/item-select.vue +195 -0
  94. package/src/components/link/index.vue +54 -0
  95. package/src/components/richEditor/index.vue +86 -0
  96. package/src/components/upload/file-upload.vue +84 -0
  97. package/src/components/upload/upload-attachment.vue +119 -0
  98. package/src/components/upload/upload-image.vue +212 -0
  99. package/src/components/view/column-check.vue +223 -0
  100. package/src/components/view/column-edit.vue +850 -0
  101. package/src/components/view/column-select.vue +206 -0
  102. package/src/components/view/condition-edit.vue +164 -0
  103. package/src/components/view/filter-edit.vue +633 -0
  104. package/src/components/view/filter-setting.vue +126 -0
  105. package/src/components/view/form-setting-layout.vue +375 -0
  106. package/src/components/view/form-setting.vue +247 -0
  107. package/src/components/view/group-column.vue +104 -0
  108. package/src/components/view/group-method.vue +104 -0
  109. package/src/components/view/mixin.js +72 -0
  110. package/src/components/view/modal-form-filter.vue +319 -0
  111. package/src/components/view/modal-form-sort.vue +248 -0
  112. package/src/components/view/modal-form.vue +453 -0
  113. package/src/components/view/modal-table.vue +471 -0
  114. package/src/components/view/table-filter.vue +702 -0
  115. package/src/components/view/table-setting.vue +533 -0
  116. package/src/components/view/view-chart.vue +423 -0
  117. package/src/components/view/view-form-draggable.vue +837 -0
  118. package/src/components/view/view-form.vue +1444 -0
  119. package/src/components/view/view-table.vue +2261 -0
  120. package/src/components/workflow/flow-chart.vue +846 -0
  121. package/src/directive/focus.js +10 -0
  122. package/src/directive/tabHide.js +9 -0
  123. package/src/i18n/index.js +15 -0
  124. package/src/i18n/locale/en-US.js +1 -0
  125. package/src/i18n/locale/lang.js +1 -0
  126. package/src/i18n/locale/zh-CN.js +1 -0
  127. package/src/i18n/locale.js +102 -0
  128. package/src/index.js +222 -0
  129. package/src/layouts/basic-layout/header-breadcrumb/index.vue +122 -0
  130. package/src/layouts/basic-layout/header-collapse/index.vue +44 -0
  131. package/src/layouts/basic-layout/header-fullscreen/index.vue +19 -0
  132. package/src/layouts/basic-layout/header-i18n/index.vue +45 -0
  133. package/src/layouts/basic-layout/header-log/index.vue +41 -0
  134. package/src/layouts/basic-layout/header-logo/index.vue +23 -0
  135. package/src/layouts/basic-layout/header-notice/index.vue +218 -0
  136. package/src/layouts/basic-layout/header-reload/index.vue +21 -0
  137. package/src/layouts/basic-layout/header-search/index.vue +37 -0
  138. package/src/layouts/basic-layout/header-setting/index.vue +219 -0
  139. package/src/layouts/basic-layout/header-user/index.vue +175 -0
  140. package/src/layouts/basic-layout/i18n.js +50 -0
  141. package/src/layouts/basic-layout/index.vue +280 -0
  142. package/src/layouts/basic-layout/menu-head/index.vue +120 -0
  143. package/src/layouts/basic-layout/menu-head/title.vue +48 -0
  144. package/src/layouts/basic-layout/menu-side/index.vue +113 -0
  145. package/src/layouts/basic-layout/menu-side/menu-collapse.vue +76 -0
  146. package/src/layouts/basic-layout/menu-side/menu-item.vue +31 -0
  147. package/src/layouts/basic-layout/menu-side/menu-title.vue +56 -0
  148. package/src/layouts/basic-layout/menu-side/submenu.vue +31 -0
  149. package/src/layouts/basic-layout/mixins/click-item.js +21 -0
  150. package/src/layouts/basic-layout/mixins/sider-menu-badge.js +13 -0
  151. package/src/layouts/basic-layout/mixins/translate-title.js +11 -0
  152. package/src/layouts/basic-layout/tabs/index.vue +192 -0
  153. package/src/layouts/basic-layout/water-mark/index.vue +29 -0
  154. package/src/libs/lodop/index.js +145 -0
  155. package/src/libs/random_str.js +10 -0
  156. package/src/libs/request/index.js +158 -0
  157. package/src/libs/system/index.js +234 -0
  158. package/src/libs/util.cookies.js +44 -0
  159. package/src/libs/util.db.js +13 -0
  160. package/src/libs/util.js +55 -0
  161. package/src/libs/util.log.js +88 -0
  162. package/src/libs/water-mark.js +44 -0
  163. package/src/menu/header.js +20 -0
  164. package/src/menu/modules/dashboard.js +23 -0
  165. package/src/menu/sider.js +12 -0
  166. package/src/mixins/app.js +9 -0
  167. package/src/mixins/page.js +643 -0
  168. package/src/pages/account/login.vue +101 -0
  169. package/src/pages/common/home.vue +169 -0
  170. package/src/pages/common/task-form.vue +350 -0
  171. package/src/pages/common/todo.vue +31 -0
  172. package/src/pages/system/apiLog.vue +79 -0
  173. package/src/pages/system/applicationType.vue +182 -0
  174. package/src/pages/system/customPage.vue +62 -0
  175. package/src/pages/system/customTable.vue +98 -0
  176. package/src/pages/system/dict.vue +36 -0
  177. package/src/pages/system/dictType.vue +58 -0
  178. package/src/pages/system/entityView.vue +38 -0
  179. package/src/pages/system/error/404.vue +6 -0
  180. package/src/pages/system/extendColumn.vue +99 -0
  181. package/src/pages/system/formView.vue +136 -0
  182. package/src/pages/system/log.vue +55 -0
  183. package/src/pages/system/notice.vue +26 -0
  184. package/src/pages/system/openApi.vue +26 -0
  185. package/src/pages/system/openUser.vue +66 -0
  186. package/src/pages/system/organization.vue +98 -0
  187. package/src/pages/system/organizationType.vue +26 -0
  188. package/src/pages/system/permission.vue +175 -0
  189. package/src/pages/system/planJob.vue +40 -0
  190. package/src/pages/system/printTemplate.vue +48 -0
  191. package/src/pages/system/process.vue +79 -0
  192. package/src/pages/system/processType.vue +26 -0
  193. package/src/pages/system/role.vue +395 -0
  194. package/src/pages/system/rolePropertyEdit.vue +480 -0
  195. package/src/pages/system/sequenceSetting.vue +26 -0
  196. package/src/pages/system/systemData.vue +52 -0
  197. package/src/pages/system/tableView.vue +386 -0
  198. package/src/pages/system/taskQueue.vue +48 -0
  199. package/src/pages/system/user.vue +250 -0
  200. package/src/pages/template/processPage.vue +243 -0
  201. package/src/pages/template/reportPage.vue +66 -0
  202. package/src/pages/template/viewPage.vue +139 -0
  203. package/src/plugins/auth/index.js +21 -0
  204. package/src/plugins/error/index.js +31 -0
  205. package/src/plugins/index.js +24 -0
  206. package/src/plugins/sweetalert2/index.js +20 -0
  207. package/src/router/dynamic.js +183 -0
  208. package/src/router/index.js +84 -0
  209. package/src/setting.js +202 -0
  210. package/src/store/index.js +9 -0
  211. package/src/store/modules/admin/index.js +16 -0
  212. package/src/store/modules/admin/modules/account.js +103 -0
  213. package/src/store/modules/admin/modules/cache.js +119 -0
  214. package/src/store/modules/admin/modules/dataView.js +112 -0
  215. package/src/store/modules/admin/modules/db.js +231 -0
  216. package/src/store/modules/admin/modules/i18n.js +87 -0
  217. package/src/store/modules/admin/modules/layout.js +115 -0
  218. package/src/store/modules/admin/modules/loader.js +44 -0
  219. package/src/store/modules/admin/modules/log.js +77 -0
  220. package/src/store/modules/admin/modules/menu.js +338 -0
  221. package/src/store/modules/admin/modules/page.js +466 -0
  222. package/src/store/modules/admin/modules/user.js +96 -0
  223. package/src/store/modules/admin/modules/viewPage.js +34 -0
  224. package/src/styles/common.less +47 -0
  225. package/src/styles/css/default.css +510 -0
  226. package/src/styles/css/login.css +1217 -0
  227. package/src/styles/default/index.less +6 -0
  228. package/src/styles/font/demo.css +539 -0
  229. package/src/styles/font/demo_index.html +372 -0
  230. package/src/styles/font/icon-demo/demo.css +539 -0
  231. package/src/styles/font/icon-demo/demo_index.html +423 -0
  232. package/src/styles/font/icon-demo/iconfont.css +61 -0
  233. package/src/styles/font/icon-demo/iconfont.eot +0 -0
  234. package/src/styles/font/icon-demo/iconfont.js +1 -0
  235. package/src/styles/font/icon-demo/iconfont.svg +59 -0
  236. package/src/styles/font/icon-demo/iconfont.ttf +0 -0
  237. package/src/styles/font/icon-demo/iconfont.woff +0 -0
  238. package/src/styles/font/icon-demo/iconfont.woff2 +0 -0
  239. package/src/styles/font/iconfont.css +47 -0
  240. package/src/styles/font/iconfont.js +1 -0
  241. package/src/styles/font/iconfont.json +65 -0
  242. package/src/styles/font/iconfont.ttf +0 -0
  243. package/src/styles/font/iconfont.woff +0 -0
  244. package/src/styles/font/iconfont.woff2 +0 -0
  245. package/src/styles/font/ionicons.svg +870 -0
  246. package/src/styles/font/ionicons.ttf +0 -0
  247. package/src/styles/font/ionicons.woff +0 -0
  248. package/src/styles/font/ionicons.woff2 +0 -0
  249. package/src/styles/index.less +7 -0
  250. package/src/styles/layout/basic-layout/layout.less +527 -0
  251. package/src/styles/layout/basic-layout/menu.less +274 -0
  252. package/src/styles/layout/index.less +2 -0
  253. package/src/styles/setting.less +6 -0
  254. package/styleguide.config.js +22 -0
  255. package/test/api/barcode.js +50 -0
  256. package/test/api/inbound.js +47 -0
  257. package/test/api/interfaceLog.js +15 -0
  258. package/test/api/interfaceQueue.js +15 -0
  259. package/test/api/interfaceServer.js +29 -0
  260. package/test/api/movePlan.js +50 -0
  261. package/test/api/movePlanItem.js +13 -0
  262. package/test/api/moveType.js +22 -0
  263. package/test/api/openApiPermission.js +25 -0
  264. package/test/api/outbound.js +40 -0
  265. package/test/api/permission.js +34 -0
  266. package/test/api/rolePermission.js +17 -0
  267. package/test/api/user.js +40 -0
  268. package/test/api/viewColumn.js +16 -0
  269. package/test/api/warehouse.js +13 -0
  270. package/test/api/warehouseMoveType.js +18 -0
  271. package/test/main.js +55 -0
  272. package/test/package.js +33 -0
  273. package/test/pages/home/index.vue +22 -0
  274. package/test/pages/task/test.vue +28 -0
  275. package/test/pages/test/dataViewTest.vue +28 -0
  276. package/test/pages/test/logReport.vue +25 -0
  277. package/test/pages/test/testPage.vue +38 -0
  278. package/test/router/routes.js +88 -0
  279. package/test/setting.env.js +22 -0
  280. package/test/styles/css/custom.css +0 -0
  281. package/test/styles/css/login.css +1217 -0
  282. package/vite.config.js +72 -0
  283. package/vue.config.js +20 -0
@@ -0,0 +1,47 @@
1
+ @font-face {
2
+ font-family: "i-icon"; /* Project id 1125611 */
3
+ src: url('iconfont.woff2?t=1651052284018') format('woff2'),
4
+ url('iconfont.woff?t=1651052284018') format('woff'),
5
+ url('iconfont.ttf?t=1651052284018') format('truetype');
6
+ }
7
+
8
+ .i-icon {
9
+ font-family: "i-icon" !important;
10
+ font-size: 16px;
11
+ font-style: normal;
12
+ -webkit-font-smoothing: antialiased;
13
+ -moz-osx-font-smoothing: grayscale;
14
+ }
15
+
16
+ .i-icon-i18n:before {
17
+ content: "\e8e9";
18
+ }
19
+
20
+ .i-icon-refresh:before {
21
+ content: "\e7d1";
22
+ }
23
+
24
+ .i-icon-record:before {
25
+ content: "\e61f";
26
+ }
27
+
28
+ .i-icon-notification:before {
29
+ content: "\e69d";
30
+ }
31
+
32
+ .i-icon-full-screen:before {
33
+ content: "\e743";
34
+ }
35
+
36
+ .i-icon-exit-full-screen:before {
37
+ content: "\e657";
38
+ }
39
+
40
+ .i-icon-menu-unfold:before {
41
+ content: "\e68b";
42
+ }
43
+
44
+ .i-icon-menu-fold:before {
45
+ content: "\e600";
46
+ }
47
+
@@ -0,0 +1 @@
1
+ !function(c){var e,t,l,o,n,i='<svg><symbol id="i-icon-i18n" viewBox="0 0 1024 1024"><path d="M385.311 138.215c19.249 25.13 36.952 54.7 53.124 88.702l1.061 2.243H646.08a8 8 0 0 1 7.985 7.504l0.011 0.247 0.004 0.249v58.24a8 8 0 0 1-7.75 7.996l-0.25 0.004h-78.746l-0.673 2.041c-25.706 77.4-62.053 143.08-109.166 197.296l-1.431 1.64-0.487 0.552 0.148 0.116c47.466 36.575 104.703 68.404 172.042 95.83l31.221-84.868c10.438-28.63 28.541-42.226 56.77-42.226 28.353 0 46.282 12.93 56.987 41.076l0.323 0.858L887.92 827.457l0.254 0.703 0.485 1.376c2.986 8.6 4.27 15.035 4.27 21.573 0 22.496-17.475 38.54-41.273 38.54-21.727 0-34.576-10.416-41.63-33.388l-0.175-0.574-24.546-71.313H646.473l-24.545 70.794-0.187 0.602c-7.188 22.777-19.38 33.448-39.543 33.866l-0.614 0.012h-0.63c-24.872 0-41.548-15.2-41.548-38.539 0-6.554 1.637-14.705 4.765-23.012l0.253-0.66 57.717-156.902c-77.632-30.998-143.486-68.202-197.543-111.636l-1.961-1.583-0.635 0.549c-61.416 52.697-136.045 91.886-223.22 117.205l-2.645 0.763-2.764 0.786a8 8 0 0 1-8.86-3.307l-0.147-0.232-31.36-51.52c-2.791-4.586-0.362-10.566 4.836-11.907 83.999-21.66 153.807-54.745 209.437-99.36l1.681-1.356 0.326-0.267-1.244-1.309c-55.237-58.389-94.469-124.985-117.787-200.073l-0.702-2.278-0.488-1.61H149.92a8 8 0 0 1-7.985-7.504l-0.011-0.247-0.004-0.249v-58.24a8 8 0 0 1 7.75-7.996l0.25-0.004h207.996l-0.49-0.823c-11.418-19.034-24.995-37.569-40.816-55.873l-1.288-1.484-1.174-1.342c-3.66-4.168-2.061-10.676 3.044-12.707l0.246-0.094 58.8-21.28a8 8 0 0 1 9.073 2.658z m330.06 432.137l-48.194 146.241h96.862l-48.668-146.241zM489.938 303.4H302.44l0.36 0.956c21.542 56.894 54.016 107.339 97.926 152.144l1.397 1.42 0.8-0.917c37.311-43.054 66.253-93.917 86.522-152.174l0.493-1.429z" ></path></symbol><symbol id="i-icon-refresh" viewBox="0 0 1024 1024"><path d="M924.06640625 494.43945312l-122.34375 122.34375001c-6.27539063 6.22265625-14.81835938 9.80859375-23.67773438 9.80859375s-17.296875-3.53320313-23.67773437-9.80859375l-122.23828125-122.34375c-13.02539063-13.078125-13.02539063-34.22460938 0-47.35546875 13.078125-13.078125 34.171875-13.078125 47.35546875 0l65.07421875 65.23242187L744.55859375 512c0-162-131.67773438-293.73046875-293.73046875-293.73046875C288.88085937 218.26953125 157.04492187 350 157.04492187 512s131.8359375 293.73046875 293.78320313 293.73046875c78.46875 0 152.24414063-30.53320313 207.82617188-86.00976563 12.97265625-13.078125 34.171875-13.078125 47.24999999 1e-8s13.02539063 34.171875 0 47.25c-68.08007813 68.18554688-158.67773438 105.6796875-255.07617187 105.67968749C251.9140625 872.59765625 90.125 710.86132813 90.125 512s161.7890625-360.703125 360.703125-360.703125c198.9140625 0 360.703125 161.7890625 360.703125 360.703125l0 0.31640625 65.1796875-65.23242188c13.078125-13.02539063 34.171875-13.02539063 47.35546875 1e-8C937.14453125 460.26757812 937.14453125 481.36132812 924.06640625 494.43945312z" ></path></symbol><symbol id="i-icon-record" viewBox="0 0 1024 1024"><path d="M512 93.85942719c-230.54965688 0-418.14057281 187.5893025-418.14057281 418.14057281 0 230.58029812 187.56027375 418.14057281 418.14057281 418.14057281S930.14057281 742.58029812 930.14057281 512C930.14057281 281.45034312 742.58029812 93.85942719 512 93.85942719zM512 870.14057281c-197.48958469 0-358.14057281-160.68001594-358.14057281-358.14057281 0-197.48958469 160.64937469-358.14057281 358.14057281-358.14057281 197.46055594 0 358.14057281 160.64937469 358.14057281 358.14057281C870.14057281 709.46055594 709.46055594 870.14057281 512 870.14057281z" ></path><path d="M512 362.00080625c-82.70985094 0-150.00080625 67.28934281-150.00080625 149.99919375s67.28934281 150.00080625 150.00080625 150.00080625 150.00080625-67.28934281 150.00080625-150.00080625S594.70985094 362.00080625 512 362.00080625z" ></path></symbol><symbol id="i-icon-notification" viewBox="0 0 1024 1024"><path d="M861.41176455 758.17647089l-63.52941182-111.17647089v-238.23529453c0-50.29411729-18.52941182-105.88235273-52.94117637-150.88235274-34.41176455-47.64705908-84.70588271-84.70588271-137.64705907-105.88235273 0 0-2.64705908 0-7.94117637-2.64705908v-2.64705821C596.70588271 99.05882364 559.64705908 62 512 62c-47.64705908 0-84.70588271 37.05882364-84.70588271 84.70588271v2.64705821c-2.64705908 0-5.29411729 2.64705908-7.94117637 2.64705908-55.58823545 18.52941182-103.23529453 55.58823545-140.29411728 103.23529453-34.41176455 47.64705908-52.94117637 100.58823545-52.94117637 153.52941094v238.23529453l-68.82352998 121.76470547c-10.58823545 15.88235273-10.58823545 37.05882364 0 52.94117724 10.58823545 15.88235273 29.11764727 26.47058818 47.64705908 26.47058819h169.41176455c13.23529453 66.17647089 71.47058818 113.82352911 140.29411816 113.8235291s127.05882363-47.64705908 140.29411728-113.8235291h169.41176456c29.11764727 0 55.58823545-23.82352911 55.58823544-52.94117637-5.29411729-13.23529453-10.58823545-26.47058818-18.52941181-37.05882363zM512 114.94117637c13.23529453 0 26.47058818 7.94117637 29.11764727 21.1764709H538.47058818h-2.64705907-5.29411729c-10.58823545-2.64705908-26.47058818-2.64705908-37.05882364 0h-5.29411728-2.64705908c2.64705908-10.58823545 13.23529453-21.1764709 26.47058818-21.17647091z m0 794.11764726c-37.05882364 0-71.47058818-23.82352911-82.05882363-58.23529453h166.76470634C583.47058818 882.58823545 549.05882364 909.05882363 512 909.05882363z m307.05882363-113.8235291H204.94117637l74.11764726-127.05882364c2.64705908-5.29411729 2.64705908-7.94117637 2.64705908-13.23529453v-243.52941181c0-84.70588271 66.17647089-174.70588271 156.17647002-206.47058819 5.29411729 0 26.47058818-7.94117637 50.29411816-10.58823544H538.47058818c23.82352911 2.64705908 47.64705908 10.58823545 52.94117637 13.23529453 87.35294092 31.76470547 153.52941182 121.76470547 153.52941181 206.47058818v243.52941182c0 5.29411729 0 10.58823545 2.64705909 13.23529365l68.8235291 121.76470635c0-2.64705908 2.64705908 0 2.64705908 2.64705908z" ></path></symbol><symbol id="i-icon-full-screen" viewBox="0 0 1024 1024"><path d="M898.71874973 933.875h-175.78124973a35.15625027 35.15625027 0 0 1 0-70.31249973h140.62500027v-140.62500027a35.15625027 35.15625027 0 0 1 70.31249973 0v175.78124973a35.15625027 35.15625027 0 0 1-35.15625027 35.15625027z m0-597.65624973a35.15625027 35.15625027 0 0 1-35.15624946-35.15625027V160.43749973h-175.78125054a35.15625027 35.15625027 0 0 1 0-70.31249973h210.9375a35.15625027 35.15625027 0 0 1 35.15625027 35.15625027v175.78124973a35.15625027 35.15625027 0 0 1-35.15625027 35.15625027zM336.21875027 160.43749973H160.43749973v175.78125054a35.15625027 35.15625027 0 0 1-70.31249973 0V125.28125027a35.15625027 35.15625027 0 0 1 35.15625027-35.15625027h210.9375a35.15625027 35.15625027 0 0 1 0 70.31249973zM125.28125027 687.78124973a35.15625027 35.15625027 0 0 1 35.15624946 35.15625027v140.62500027h140.62500027a35.15625027 35.15625027 0 0 1 0 70.31249973H125.28125027a35.15625027 35.15625027 0 0 1-35.15625027-35.15625027v-175.78124973a35.15625027 35.15625027 0 0 1 35.15625027-35.15625027z" ></path></symbol><symbol id="i-icon-exit-full-screen" viewBox="0 0 1024 1024"><path d="M121.9475 379.889375h224.5190625c18.6103125 0 33.75-15.1396875 33.75-33.75V121.619375c0-16.5684375-13.4315625-30-30-30s-30 13.4315625-30 30v198.27H121.9475c-16.5684375 0-30 13.4315625-30 30 0 16.5675 13.4315625 30 30 30zM121.9475 703.265h198.2690625v198.2690625c0 16.5684375 13.4315625 30 30 30s30-13.4315625 30-30V677.015c0-18.6103125-15.1396875-33.75-33.75-33.75H121.9475c-16.5684375 0-30 13.4315625-30 30s13.4315625 30 30 30zM673.7309375 931.439375c16.5684375 0 30-13.4315625 30-30V703.1703125H902c16.5684375 0 30-13.4315625 30-30s-13.4315625-30-30-30H677.4809375c-18.6103125 0-33.75 15.1396875-33.75 33.75v224.5190625c0 16.5684375 13.4315625 30 30 30zM677.4809375 380.4115625H902c16.5684375 0 30-13.4315625 30-30s-13.4315625-30-30-30H703.7309375V122.1415625c0-16.5684375-13.4315625-30-30-30s-30 13.4315625-30 30v224.52c0 18.609375 15.1396875 33.75 33.75 33.75z" fill="" ></path></symbol><symbol id="i-icon-menu-unfold" viewBox="0 0 1024 1024"><path d="M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8z m-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56z m504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8z m0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM142.4 642.1L298.7 519c4.5-3.5 4.5-10.3 0-13.9L142.4 381.9c-5.8-4.6-14.4-0.5-14.4 6.9v246.3c0 7.4 8.5 11.6 14.4 7z" ></path></symbol><symbol id="i-icon-menu-fold" viewBox="0 0 1024 1024"><path d="M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8z m-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56z m504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8z m0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM115.4 518.9L271.7 642c5.8 4.6 14.4 0.5 14.4-6.9V388.9c0-7.4-8.5-11.5-14.4-6.9L115.4 505.1a8.74 8.74 0 0 0 0 13.8z" ></path></symbol></svg>',a=(a=document.getElementsByTagName("script"))[a.length-1].getAttribute("data-injectcss"),s=function(c,e){e.parentNode.insertBefore(c,e)};if(a&&!c.__iconfont__svg__cssinject__){c.__iconfont__svg__cssinject__=!0;try{document.write("<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>")}catch(c){console&&console.log(c)}}function d(){n||(n=!0,l())}function h(){try{o.documentElement.doScroll("left")}catch(c){return void setTimeout(h,50)}d()}e=function(){var c,e=document.createElement("div");e.innerHTML=i,i=null,(e=e.getElementsByTagName("svg")[0])&&(e.setAttribute("aria-hidden","true"),e.style.position="absolute",e.style.width=0,e.style.height=0,e.style.overflow="hidden",e=e,(c=document.body).firstChild?s(e,c.firstChild):c.appendChild(e))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(e,0):(t=function(){document.removeEventListener("DOMContentLoaded",t,!1),e()},document.addEventListener("DOMContentLoaded",t,!1)):document.attachEvent&&(l=e,o=c.document,n=!1,h(),o.onreadystatechange=function(){"complete"==o.readyState&&(o.onreadystatechange=null,d())})}(window);
@@ -0,0 +1,65 @@
1
+ {
2
+ "id": "1125611",
3
+ "name": "iview-admin-pro",
4
+ "font_family": "i-icon",
5
+ "css_prefix_text": "i-icon-",
6
+ "description": "",
7
+ "glyphs": [
8
+ {
9
+ "icon_id": "27328867",
10
+ "name": "i18n",
11
+ "font_class": "i18n",
12
+ "unicode": "e8e9",
13
+ "unicode_decimal": 59625
14
+ },
15
+ {
16
+ "icon_id": "587065",
17
+ "name": "refresh",
18
+ "font_class": "refresh",
19
+ "unicode": "e7d1",
20
+ "unicode_decimal": 59345
21
+ },
22
+ {
23
+ "icon_id": "544041",
24
+ "name": "iconfont-radiobox",
25
+ "font_class": "record",
26
+ "unicode": "e61f",
27
+ "unicode_decimal": 58911
28
+ },
29
+ {
30
+ "icon_id": "2552069",
31
+ "name": "notification",
32
+ "font_class": "notification",
33
+ "unicode": "e69d",
34
+ "unicode_decimal": 59037
35
+ },
36
+ {
37
+ "icon_id": "3556111",
38
+ "name": "full-screen",
39
+ "font_class": "full-screen",
40
+ "unicode": "e743",
41
+ "unicode_decimal": 59203
42
+ },
43
+ {
44
+ "icon_id": "1433808",
45
+ "name": "exit-full-screen",
46
+ "font_class": "exit-full-screen",
47
+ "unicode": "e657",
48
+ "unicode_decimal": 58967
49
+ },
50
+ {
51
+ "icon_id": "6925933",
52
+ "name": "menu-unfold",
53
+ "font_class": "menu-unfold",
54
+ "unicode": "e68b",
55
+ "unicode_decimal": 59019
56
+ },
57
+ {
58
+ "icon_id": "7839858",
59
+ "name": "menu-fold",
60
+ "font_class": "menu-fold",
61
+ "unicode": "e600",
62
+ "unicode_decimal": 58880
63
+ }
64
+ ]
65
+ }
Binary file
Binary file
Binary file