hrp-ui-base 1.0.1 → 1.0.3

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 (269) hide show
  1. package/dist/components.cjs +1 -1
  2. package/dist/components.es.js +3595 -1224
  3. package/dist/index.cjs +1 -1
  4. package/dist/index.es.js +100 -67
  5. package/dist/style.css +1 -1
  6. package/package.json +16 -4
  7. package/packages/approval-process/.eslintrc +7 -0
  8. package/packages/approval-process/README.md +130 -0
  9. package/packages/approval-process/index.ts +65 -0
  10. package/packages/approval-process/package.json +17 -0
  11. package/packages/approval-process/packages/components/choose-member/BO/departBo.ts +8 -0
  12. package/packages/approval-process/packages/components/choose-member/BO/memberBo.ts +14 -0
  13. package/packages/approval-process/packages/components/choose-member/BO/role.svg +1 -0
  14. package/packages/approval-process/packages/components/choose-member/BO/roleBo.ts +16 -0
  15. package/packages/approval-process/packages/components/choose-member/index.vue +497 -0
  16. package/packages/approval-process/packages/components/choose-member/styles/common.scss +134 -0
  17. package/packages/approval-process/packages/components/comment/assets/avatar.svg +1 -0
  18. package/packages/approval-process/packages/components/comment/assets/download.svg +4 -0
  19. package/packages/approval-process/packages/components/comment/assets/mp3.svg +11 -0
  20. package/packages/approval-process/packages/components/comment/assets/mp4.svg +11 -0
  21. package/packages/approval-process/packages/components/comment/assets/other.svg +11 -0
  22. package/packages/approval-process/packages/components/comment/assets/pdf.svg +11 -0
  23. package/packages/approval-process/packages/components/comment/assets/ppt.svg +11 -0
  24. package/packages/approval-process/packages/components/comment/assets/preview.svg +4 -0
  25. package/packages/approval-process/packages/components/comment/assets/remove.png +0 -0
  26. package/packages/approval-process/packages/components/comment/assets/word.svg +11 -0
  27. package/packages/approval-process/packages/components/comment/assets/xls.svg +11 -0
  28. package/packages/approval-process/packages/components/comment/index.vue +843 -0
  29. package/packages/approval-process/packages/components/comment/modules/previewMp.vue +54 -0
  30. package/packages/approval-process/packages/components/comment/styles/comment-style.scss +304 -0
  31. package/packages/approval-process/packages/components/image-cropper/index.vue +202 -0
  32. package/packages/approval-process/packages/components/sign/index.vue +766 -0
  33. package/packages/approval-process/packages/components/sign/modules/full-screen-sign.vue +20 -0
  34. package/packages/approval-process/packages/components/urge-dialog/index.vue +121 -0
  35. package/packages/approval-process/packages/components/vue-esign/index.vue +289 -0
  36. package/packages/approval-process/packages/flow/approve-component/approve-success.vue +82 -0
  37. package/packages/approval-process/packages/flow/approve-component/route-params-error.vue +49 -0
  38. package/packages/approval-process/packages/flow/approve-component/submit-success.vue +59 -0
  39. package/packages/approval-process/packages/flow/examine-approve-itr.vue +978 -0
  40. package/packages/approval-process/packages/flow/examine-approve.vue +1065 -0
  41. package/packages/approval-process/packages/flow/form-component/associated-approval-form/README.md +38 -0
  42. package/packages/approval-process/packages/flow/form-component/associated-approval-form/assets/avatar.svg +1 -0
  43. package/packages/approval-process/packages/flow/form-component/associated-approval-form/index.vue +159 -0
  44. package/packages/approval-process/packages/flow/form-component/associated-approval-form/modules/associated-approval-form-mobile.vue +297 -0
  45. package/packages/approval-process/packages/flow/form-component/associated-approval-form/modules/associated-approval-form-pc.vue +314 -0
  46. package/packages/approval-process/packages/flow/form-component/associated-approval-form/style/curd-area-mobile.scss +110 -0
  47. package/packages/approval-process/packages/flow/form-component/associated-approval-form/style/curd-area.scss +96 -0
  48. package/packages/approval-process/packages/flow/form-component/associated-approval-form/style/out-put.scss +48 -0
  49. package/packages/approval-process/packages/flow/form-component/show-sign.vue +27 -0
  50. package/packages/approval-process/packages/flow/styles/common.scss +134 -0
  51. package/packages/approval-process/packages/flow/styles/examine-approve-pc.scss +465 -0
  52. package/packages/approval-process/packages/flow/styles/examine-approve-phone.scss +293 -0
  53. package/packages/approval-process/packages/flow/styles/submit-approve-pc.scss +379 -0
  54. package/packages/approval-process/packages/flow/styles/submit-approve-phone.scss +337 -0
  55. package/packages/approval-process/packages/flow/submit-approve-itr.vue +623 -0
  56. package/packages/approval-process/packages/flow/submit-approve.vue +628 -0
  57. package/packages/approval-process/packages/flow/systemCom/BO/departBo.ts +8 -0
  58. package/packages/approval-process/packages/flow/systemCom/BO/memberBo.ts +14 -0
  59. package/packages/approval-process/packages/flow/systemCom/BO/role.svg +1 -0
  60. package/packages/approval-process/packages/flow/systemCom/BO/roleBo.ts +16 -0
  61. package/packages/approval-process/packages/flow/systemCom/choose-depart.vue +399 -0
  62. package/packages/approval-process/packages/flow/systemCom/choose-member-phone.vue +515 -0
  63. package/packages/approval-process/packages/flow/systemCom/choose-member.vue +565 -0
  64. package/packages/approval-process/packages/flow/systemCom/choose-role.vue +301 -0
  65. package/packages/approval-process/packages/styles/common.scss +134 -0
  66. package/packages/approval-process/packages/styles/flex-common.scss +118 -0
  67. package/packages/approval-process/packages/styles/flexCommon.scss +73 -0
  68. package/packages/approval-process/packages/styles/main.css +216 -0
  69. package/packages/approval-process/packages/styles/router-page.scss +371 -0
  70. package/packages/approval-process/packages/styles/style-set.ts +207 -0
  71. package/packages/approval-process/packages/types.d.ts +4 -0
  72. package/packages/approval-process/packages/utils/base.ts +15 -0
  73. package/packages/approval-process/packages/utils/crypto.ts +67 -0
  74. package/packages/approval-process/packages/utils/ddUtils.ts +56 -0
  75. package/packages/approval-process/packages/utils/debounce.ts +36 -0
  76. package/packages/approval-process/packages/utils/des.js +1107 -0
  77. package/packages/approval-process/packages/utils/download.ts +38 -0
  78. package/packages/approval-process/packages/utils/editor.ts +37 -0
  79. package/packages/approval-process/packages/utils/getEnv.ts +36 -0
  80. package/packages/approval-process/packages/utils/os.ts +20 -0
  81. package/packages/approval-process/packages/utils/path-util.ts +31 -0
  82. package/packages/approval-process/packages/utils/routerUtil.ts +304 -0
  83. package/packages/approval-process/packages/utils/string-utils.ts +13 -0
  84. package/packages/approval-process/packages/utils/throttle.ts +44 -0
  85. package/packages/approval-process/packages/utils/validate.ts +92 -0
  86. package/packages/approval-process/packages/utils/ws.ts +218 -0
  87. package/packages/approval-process/tsconfig.json +72 -0
  88. package/packages/approval-process/vite.config.ts +56 -0
  89. package/src/api/bms/flow/FlowCommentController.ts +50 -0
  90. package/src/api/bms/flow/FlowInstanceController.ts +167 -0
  91. package/src/api/bms/flow/FlowProcessController.ts +55 -0
  92. package/src/api/bms/flow/FlowSheetController.ts +27 -0
  93. package/src/api/bms/flow/FlowSignController.ts +76 -0
  94. package/src/api/bms/flow/bo/AssociatedApprovalBO.ts +15 -0
  95. package/src/api/bms/flow/bo/AssociatedApprovalVO.ts +35 -0
  96. package/src/api/bms/flow/bo/AuditBaseInfo.ts +39 -0
  97. package/src/api/bms/flow/bo/ButtonVo.ts +7 -0
  98. package/src/api/bms/flow/bo/DingCallbackBo.ts +13 -0
  99. package/src/api/bms/flow/bo/FlowCommentBO.ts +12 -0
  100. package/src/api/bms/flow/bo/FlowCommentVO.ts +23 -0
  101. package/src/api/bms/flow/bo/FlowInstanceBO.ts +14 -0
  102. package/src/api/bms/flow/bo/FlowNodeVO.ts +24 -0
  103. package/src/api/bms/flow/bo/FlowNoticeBO.ts +17 -0
  104. package/src/api/bms/flow/bo/FlowProcessBO.ts +13 -0
  105. package/src/api/bms/flow/bo/FlowProcessVO.ts +9 -0
  106. package/src/api/bms/flow/bo/FlowReplyVO.ts +23 -0
  107. package/src/api/bms/flow/bo/FlowSheetVO.ts +16 -0
  108. package/src/api/bms/flow/bo/InstanceBackBO.ts +9 -0
  109. package/src/api/bms/flow/bo/InstanceNodeBO.ts +13 -0
  110. package/src/api/bms/flow/bo/InstanceNodeVO.ts +21 -0
  111. package/src/api/bms/flow/bo/NodeShowVo.ts +19 -0
  112. package/src/api/bms/flow/bo/ReviewBO.ts +11 -0
  113. package/src/api/bms/flow/bo/SheetSearchBO.ts +11 -0
  114. package/src/api/bms/flow/bo/SystemVO.ts +7 -0
  115. package/src/api/bms/flow/bo/TransmitBO.ts +9 -0
  116. package/src/api/bms/flow/bo/UrgeFlowBO.ts +7 -0
  117. package/src/api/bms/flow/bo/UserBaseInfoVo.ts +13 -0
  118. package/src/api/bms/flow/bo/UserInfoVo.ts +44 -0
  119. package/src/api/bms/flow/bo/UserResultVo.ts +17 -0
  120. package/src/api/bms/flow/bo/ValueMapBo.ts +7 -0
  121. package/src/api/bms/home/HomeController.ts +106 -0
  122. package/src/api/bms/home/bo/CollectedMenuBo.ts +9 -0
  123. package/src/api/bms/home/bo/DeptBaseVo.ts +9 -0
  124. package/src/api/bms/home/bo/DomainVO.ts +13 -0
  125. package/src/api/bms/home/bo/FunPermission.ts +17 -0
  126. package/src/api/bms/home/bo/GroupVO.ts +10 -0
  127. package/src/api/bms/home/bo/HomeMenu.ts +22 -0
  128. package/src/api/bms/home/bo/HomeMenuVo.ts +11 -0
  129. package/src/api/bms/home/bo/PersonalizationBo.ts +17 -0
  130. package/src/api/bms/home/bo/PersonalizationVo.ts +19 -0
  131. package/src/api/bms/home/bo/PhoneMenu.ts +14 -0
  132. package/src/api/bms/home/bo/SearchMenuVo.ts +10 -0
  133. package/src/api/bms/home/bo/UserBaseInfoVo.ts +11 -0
  134. package/src/api/hrms/dept/bo/DeptBaseVo.ts +6 -0
  135. package/src/api/hrms/dept/bo/DeptTreeVo.ts +23 -0
  136. package/src/api/hrms/dept/bo/DeptUserVo.ts +9 -0
  137. package/src/api/hrms/dept/bo/DeptUsersVo.ts +10 -0
  138. package/src/api/hrms/dept/bo/DeptVo.ts +19 -0
  139. package/src/api/hrms/dept/bo/UserBaseInfoVo.ts +8 -0
  140. package/src/api/hrms/dept/deptController.ts +100 -0
  141. package/src/api/hrms/role/bo/RoleBaseVo.ts +6 -0
  142. package/src/api/hrms/role/bo/RoleGroupVo.ts +11 -0
  143. package/src/api/hrms/role/bo/RoleVo.ts +22 -0
  144. package/src/api/hrms/role/roleController.ts +19 -0
  145. package/src/api/hrms/user/bo/UserBaseInfoVo.ts +11 -0
  146. package/src/api/hrms/user/bo/UserCardVO.ts +14 -0
  147. package/src/api/hrms/user/bo/UserDeptBO.ts +13 -0
  148. package/src/api/hrms/user/bo/UserRoleBO.ts +11 -0
  149. package/src/api/hrms/user/bo/UserVO.ts +23 -0
  150. package/src/api/hrms/user/userController.ts +86 -0
  151. package/src/api/notice/NoticeController.ts +73 -0
  152. package/src/api/notice/bo/NoticePageBO.ts +24 -0
  153. package/src/api/notice/bo/NoticeVO.ts +31 -0
  154. package/src/api/work-order-pc/flow/Bo/ValueMapBo.ts +7 -0
  155. package/src/api/work-order-pc/flow/ItrFlowProcessController.ts +42 -0
  156. package/src/api/work-order-pc/flow/Vo/FlowNodeVO.ts +24 -0
  157. package/src/api/work-order-pc/flow/Vo/UserInfoVo.ts +44 -0
  158. package/src/assets/layout/avatar-default.svg +6 -0
  159. package/src/assets/layout/collect-active.svg +7 -0
  160. package/src/assets/layout/collect-default.svg +7 -0
  161. package/src/assets/layout/download-active.svg +8 -0
  162. package/src/assets/layout/download-default.svg +8 -0
  163. package/src/assets/layout/export-dark.svg +7 -0
  164. package/src/assets/layout/export-default.svg +7 -0
  165. package/src/assets/layout/font-active.svg +6 -0
  166. package/src/assets/layout/font-default.svg +6 -0
  167. package/src/assets/layout/help-active.svg +10 -0
  168. package/src/assets/layout/help-default.svg +10 -0
  169. package/src/assets/layout/home-active.svg +6 -0
  170. package/src/assets/layout/home.svg +6 -0
  171. package/src/assets/layout/menu-expand.svg +6 -0
  172. package/src/assets/layout/menu-icon.png +0 -0
  173. package/src/assets/layout/menu-position-active.svg +6 -0
  174. package/src/assets/layout/menu-position-default.svg +6 -0
  175. package/src/assets/layout/message-active.svg +9 -0
  176. package/src/assets/layout/message-default.svg +9 -0
  177. package/src/assets/layout/moon.svg +8 -0
  178. package/src/assets/layout/router-all-dark.svg +11 -0
  179. package/src/assets/layout/router-all-default.svg +17 -0
  180. package/src/assets/layout/search-active.svg +20 -0
  181. package/src/assets/layout/search-default.svg +20 -0
  182. package/src/assets/layout/star-active.svg +1 -0
  183. package/src/assets/layout/star-default.svg +3 -0
  184. package/src/assets/layout/sun-active.svg +6 -0
  185. package/src/assets/layout/sun-default.svg +6 -0
  186. package/src/assets/layout/switch-moon.svg +3 -0
  187. package/src/assets/layout/switch-sun.svg +41 -0
  188. package/src/assets/layout/todo-active.svg +12 -0
  189. package/src/assets/layout/todo-default.svg +12 -0
  190. package/src/assets/layout/user-dark.svg +13 -0
  191. package/src/assets/layout/user-default.svg +13 -0
  192. package/src/assets/process/agree.png +0 -0
  193. package/src/assets/process/defaultAvatar.png +0 -0
  194. package/src/assets/process/drawer/departManagerJump.png +0 -0
  195. package/src/assets/process/drawer/manyLevel1close.svg +10 -0
  196. package/src/assets/process/drawer/manyLevel1open.svg +7 -0
  197. package/src/assets/process/drawer/manyLevel2close.svg +7 -0
  198. package/src/assets/process/drawer/manyLevel2open.svg +7 -0
  199. package/src/assets/process/inProcess.png +0 -0
  200. package/src/assets/process/manyPeople.png +0 -0
  201. package/src/assets/process/manyPeople2.png +0 -0
  202. package/src/assets/process/reject.png +0 -0
  203. package/src/assets/process/revoke.png +0 -0
  204. package/src/components/annex-img-upload/index.vue +4 -4
  205. package/src/components/annex-img-upload/modules/previewMp.vue +1 -1
  206. package/src/components/annex-upload/index.vue +4 -4
  207. package/src/components/annex-upload/modules/previewMp.vue +1 -1
  208. package/src/components/annex-upload-weijian/index.vue +4 -4
  209. package/src/components/annex-upload-weijian/modules/previewMp.vue +1 -1
  210. package/src/components/base-layout/index.vue +198 -0
  211. package/src/components/layout/SysHeader.vue +90 -0
  212. package/src/components/layout/SysHeaderLeft.vue +116 -0
  213. package/src/components/layout/SysHeaderRight.vue +112 -0
  214. package/src/components/layout/SysHeaderTabs.vue +289 -0
  215. package/src/components/layout/components/avatar-component.vue +77 -0
  216. package/src/components/layout/components/dark-component.vue +82 -0
  217. package/src/components/layout/components/download-component.vue +49 -0
  218. package/src/components/layout/components/font-size-component.vue +66 -0
  219. package/src/components/layout/components/menu-position-component.vue +97 -0
  220. package/src/components/layout/components/message-component.vue +64 -0
  221. package/src/components/layout/components/todo-component.vue +55 -0
  222. package/src/components/layout/index.ts +24 -0
  223. package/src/components/layout/message/message-dictionary.ts +27 -0
  224. package/src/components/layout/message/message-icon//345/205/250/351/203/250/351/200/232/347/237/245-/350/223/235.svg +8 -0
  225. package/src/components/layout/message/message-icon//345/205/250/351/203/250/351/200/232/347/237/245-/351/273/221.svg +8 -0
  226. package/src/components/layout/message/message-icon//345/205/250/351/203/250/351/200/232/347/237/245.svg +8 -0
  227. package/src/components/layout/message/message-icon//345/205/254/345/221/212/351/200/232/347/237/245-/350/223/235.svg +12 -0
  228. package/src/components/layout/message/message-icon//345/205/254/345/221/212/351/200/232/347/237/245-/351/273/221.svg +12 -0
  229. package/src/components/layout/message/message-icon//345/205/254/345/221/212/351/200/232/347/237/245.svg +12 -0
  230. package/src/components/layout/message/message-icon//345/256/241/346/211/271/351/200/232/347/237/245-/350/223/235.svg +8 -0
  231. package/src/components/layout/message/message-icon//345/256/241/346/211/271/351/200/232/347/237/245-/351/273/221.svg +8 -0
  232. package/src/components/layout/message/message-icon//345/256/241/346/211/271/351/200/232/347/237/245.svg +8 -0
  233. package/src/components/layout/message/message-icon//345/257/274/345/207/272/351/200/232/347/237/245-/350/223/235.svg +13 -0
  234. package/src/components/layout/message/message-icon//345/257/274/345/207/272/351/200/232/347/237/245-/351/273/221.svg +13 -0
  235. package/src/components/layout/message/message-icon//345/257/274/345/207/272/351/200/232/347/237/245.svg +13 -0
  236. package/src/components/layout/message/message-icon//346/234/252/350/257/273/351/200/232/347/237/245-/350/223/235.svg +11 -0
  237. package/src/components/layout/message/message-icon//346/234/252/350/257/273/351/200/232/347/237/245-/351/273/221.svg +11 -0
  238. package/src/components/layout/message/message-icon//346/234/252/350/257/273/351/200/232/347/237/245.svg +11 -0
  239. package/src/components/layout/message/message-icon//347/251/272/347/212/266/346/200/201.svg +17 -0
  240. package/src/components/layout/message/message-icon//347/263/273/347/273/237/351/200/232/347/237/245-/350/223/235.svg +13 -0
  241. package/src/components/layout/message/message-icon//347/263/273/347/273/237/351/200/232/347/237/245-/351/273/221.svg +13 -0
  242. package/src/components/layout/message/message-icon//347/263/273/347/273/237/351/200/232/347/237/245.svg +13 -0
  243. package/src/components/layout/message/message-notification-drawer.vue +529 -0
  244. package/src/components/layout/personalization-guide-dialog.vue +255 -0
  245. package/src/components/layout/sideMenu-global.scss +115 -0
  246. package/src/components/layout/sideMenu.scss +312 -0
  247. package/src/components/layout/sideMenu.vue +542 -0
  248. package/src/components/layout/sideMenuSonList.vue +185 -0
  249. package/src/components/layout/styles/icon.scss +72 -0
  250. package/src/components/layout/types.ts +98 -0
  251. package/src/components/list-search-content/components/search-date-range.vue +1 -1
  252. package/src/components/list-search-content/components/search-date-time-range.vue +1 -1
  253. package/src/components/list-search-content/components/search-date.vue +1 -1
  254. package/src/components/list-search-content/components/search-input-number.vue +1 -1
  255. package/src/components/list-search-content/components/search-input.vue +1 -1
  256. package/src/components/list-search-content/components/search-multiple_select.vue +1 -1
  257. package/src/components/list-search-content/components/search-select.vue +1 -1
  258. package/src/components/list-search-content/index.vue +6 -6
  259. package/src/components/list-search-content/modules/add-views-package-dialog.vue +3 -3
  260. package/src/components/list-search-content/modules/search-condition-area.vue +2 -2
  261. package/src/components/list-search-content/modules/views-package-manage-dialog.vue +5 -5
  262. package/src/components.ts +19 -4
  263. package/src/index.ts +1 -0
  264. package/src/utils/dd-utils.ts +1 -1
  265. package/src/utils/get-dict.ts +2 -2
  266. package/src/utils/permit-utils.ts +2 -2
  267. package/src/api/bms/dict/bo/TotalDictSearchBO.ts +0 -8
  268. package/src/api/bms/file/FileExportController.ts +0 -18
  269. package/src/api/bms/file/bo/FileExportVO.ts +0 -17
@@ -0,0 +1,49 @@
1
+ <!--
2
+ * @description: 下载中心(抽屉展示)
3
+ * @fileName: download-component.vue
4
+ !-->
5
+ <template>
6
+ <div>
7
+ <!-- 下载中心 -->
8
+ <div :class="'icon-box ' + (isActive ? 'icon-box-active' : '')" @click="showDownload" id="tourDownloadId"
9
+ @mouseenter="mouseEnterIcon" @mouseleave="mouseLeaveIcon" @mousemove="mouseEnterIcon" style="overflow: visible">
10
+ <img :src="downloadDefaultIcon" v-if="!isActive">
11
+ <img :src="downloadActiveIcon" v-if="isActive">
12
+ </div>
13
+ <div class="popover-tooltip-custom" ref="popoverTooptipRef" v-show="isMouseEnter && !isActive">
14
+ <div class="triangle-top"></div>
15
+ <div>下载中心</div>
16
+ </div>
17
+ </div>
18
+ </template>
19
+
20
+ <script setup lang='ts'>
21
+ import { ref, watch } from 'vue'
22
+ import downloadDefaultIcon from '../../../assets/layout/download-default.svg'
23
+ import downloadActiveIcon from '../../../assets/layout/download-active.svg'
24
+
25
+ const props = defineProps<{
26
+ active?: boolean
27
+ }>()
28
+
29
+ const emit = defineEmits<{
30
+ (e: 'click'): void
31
+ }>()
32
+
33
+ const isMouseEnter = ref(false)
34
+ const isActive = ref(props.active || false)
35
+
36
+ watch(() => props.active, (val) => { isActive.value = !!val })
37
+
38
+ const mouseEnterIcon = () => { isMouseEnter.value = true }
39
+ const mouseLeaveIcon = () => { isMouseEnter.value = false }
40
+
41
+ /** 点击下载中心 */
42
+ const showDownload = () => {
43
+ emit('click')
44
+ }
45
+ </script>
46
+
47
+ <style scoped lang='scss'>
48
+ @use '../styles/icon.scss';
49
+ </style>
@@ -0,0 +1,66 @@
1
+ <!--
2
+ * @description: 字体大小调整组件
3
+ * @fileName: font-size-component.vue
4
+ !-->
5
+ <template>
6
+ <div>
7
+ <el-dropdown trigger="click" @visible-change="clickChange">
8
+ <div id="tourFontSizeId" :class="'icon-box ' + (isClick ? 'icon-box-active' : '')" @mouseenter="mouseEnterIcon"
9
+ @mouseleave="mouseLeaveIcon" @mousemove="mouseEnterIcon">
10
+ <img :src="fontDefaultIcon" v-if="!isClick">
11
+ <img :src="fontActiveIcon" v-if="isClick">
12
+ </div>
13
+ <template #dropdown>
14
+ <el-segmented @change="changeFontSize" v-model="localFontSize" :options="fontSizeOption"
15
+ size="default" />
16
+ </template>
17
+ </el-dropdown>
18
+ <div class="popover-tooltip-custom" ref="popoverTooptipRef" v-show="isMouseEnter && !isClick">
19
+ <div class="triangle-top"></div>
20
+ <div>字体大小</div>
21
+ </div>
22
+ </div>
23
+ </template>
24
+
25
+ <script setup lang='ts'>
26
+ import { ref, watch } from 'vue'
27
+ import fontDefaultIcon from '../../../assets/layout/font-default.svg'
28
+ import fontActiveIcon from '../../../assets/layout/font-active.svg'
29
+
30
+ const props = defineProps<{
31
+ fontSize: string
32
+ }>()
33
+
34
+ const emit = defineEmits<{
35
+ (e: 'change', size: string): void
36
+ }>()
37
+
38
+ const localFontSize = ref(props.fontSize)
39
+ watch(() => props.fontSize, (val) => { localFontSize.value = val })
40
+
41
+ /** 字体的选项 */
42
+ const fontSizeOption = ref([
43
+ { label: '小', value: 'small' },
44
+ { label: '中', value: 'medium' },
45
+ { label: '大', value: 'large' },
46
+ ])
47
+
48
+ const isMouseEnter = ref(false)
49
+ const isClick = ref(false)
50
+
51
+ const mouseEnterIcon = () => { isMouseEnter.value = true }
52
+ const mouseLeaveIcon = () => { isMouseEnter.value = false }
53
+
54
+ const clickChange = (isVisiable: boolean) => {
55
+ isClick.value = isVisiable
56
+ isMouseEnter.value = false
57
+ }
58
+
59
+ const changeFontSize = (size: string | number | boolean) => {
60
+ emit('change', size as string)
61
+ }
62
+ </script>
63
+
64
+ <style scoped lang='scss'>
65
+ @use '../styles/icon.scss';
66
+ </style>
@@ -0,0 +1,97 @@
1
+ <!--
2
+ * @description: 菜单栏位置配置
3
+ * @fileName: menu-position-component.vue
4
+ !-->
5
+ <template>
6
+ <div>
7
+ <el-dropdown trigger="click" @visible-change="clickChange">
8
+ <div
9
+ id="tourMenuPositionId"
10
+ :class="'icon-box menu-position-icon ' + (isClick ? 'icon-box-active' : '')"
11
+ @mouseenter="mouseEnterIcon"
12
+ @mouseleave="mouseLeaveIcon"
13
+ @mousemove="mouseEnterIcon"
14
+ >
15
+ <img :src="menuPositionDefaultIcon" v-if="!isClick" />
16
+ <img :src="menuPositionActiveIcon" v-if="isClick" />
17
+ </div>
18
+ <template #dropdown>
19
+ <div class="menu-position-dropdown">
20
+ <span>菜单栏位置</span>
21
+ <el-segmented
22
+ v-model="localMenuPosition"
23
+ :options="menuPositionOption"
24
+ size="default"
25
+ @change="changeMenuPosition"
26
+ />
27
+ </div>
28
+ </template>
29
+ </el-dropdown>
30
+ <div
31
+ class="popover-tooltip-custom"
32
+ ref="popoverTooptipRef"
33
+ v-show="isMouseEnter && !isClick"
34
+ style="left: -50%;"
35
+ >
36
+ <div class="triangle-top"></div>
37
+ <div>菜单栏位置</div>
38
+ </div>
39
+ </div>
40
+ </template>
41
+
42
+ <script setup lang="ts">
43
+ import { ref, watch } from "vue";
44
+ import menuPositionDefaultIcon from '../../../assets/layout/menu-position-default.svg'
45
+ import menuPositionActiveIcon from '../../../assets/layout/menu-position-active.svg'
46
+
47
+ const props = defineProps<{
48
+ menuPosition: string
49
+ }>()
50
+
51
+ const emit = defineEmits<{
52
+ (e: 'change', value: string): void
53
+ }>()
54
+
55
+ const localMenuPosition = ref(props.menuPosition)
56
+ watch(() => props.menuPosition, (val) => { localMenuPosition.value = val })
57
+
58
+ /** 菜单栏位置选项 */
59
+ const menuPositionOption = ref([
60
+ { label: "顶部", value: "top" },
61
+ { label: "左侧", value: "left" },
62
+ ]);
63
+
64
+ const isMouseEnter = ref(false);
65
+ const isClick = ref(false);
66
+ const popoverTooptipRef = ref();
67
+
68
+ const mouseEnterIcon = () => { isMouseEnter.value = true };
69
+ const mouseLeaveIcon = () => { isMouseEnter.value = false };
70
+
71
+ const clickChange = (isVisiable: boolean) => {
72
+ isClick.value = isVisiable;
73
+ isMouseEnter.value = false;
74
+ };
75
+
76
+ const changeMenuPosition = (menuPosition: string | number | boolean) => {
77
+ emit('change', menuPosition as string);
78
+ };
79
+ </script>
80
+
81
+ <style scoped lang="scss">
82
+ @use '../styles/icon.scss';
83
+
84
+ .menu-position-dropdown {
85
+ display: flex;
86
+ align-items: center;
87
+ gap: 12px;
88
+ padding: 10px 12px;
89
+ white-space: nowrap;
90
+ }
91
+
92
+ .menu-position-icon {
93
+ img {
94
+ width: 23px;
95
+ }
96
+ }
97
+ </style>
@@ -0,0 +1,64 @@
1
+ <!--
2
+ * @description: 消息通知按钮
3
+ * @fileName: message-component.vue
4
+ !-->
5
+ <template>
6
+ <div id="tourMessageId">
7
+ <div :class="'icon-box ' + (isClick ? 'icon-box-active' : '')" @click="showNotice" @mouseenter="mouseEnterIcon"
8
+ @mouseleave="mouseLeaveIcon" @mousemove="mouseEnterIcon" style="margin-top:2px; overflow: visible;position:relative;"
9
+ id="tourMessageButtonAreaId">
10
+ <el-badge :value="noticeCount" class="item" :max="99" :hidden="noticeCount === 0" :offset="[0, 1]">
11
+ <img :src="messageDefaultIcon" v-if="!isClick">
12
+ <img :src="messageActiveIcon" v-if="isClick">
13
+ </el-badge>
14
+ </div>
15
+ <div class="popover-tooltip-custom" ref="popoverTooptipRef" v-show="isMouseEnter && !isClick">
16
+ <div class="triangle-top"></div>
17
+ <div>消息通知</div>
18
+ </div>
19
+ </div>
20
+ </template>
21
+
22
+ <script setup lang='ts'>
23
+ import { ref, watch } from 'vue'
24
+ import messageDefaultIcon from '../../../assets/layout/message-default.svg'
25
+ import messageActiveIcon from '../../../assets/layout/message-active.svg'
26
+
27
+ const props = defineProps<{
28
+ noticeCount?: number
29
+ active?: boolean
30
+ }>()
31
+
32
+ const emit = defineEmits<{
33
+ (e: 'click', isOpen: boolean): void
34
+ }>()
35
+
36
+ const isMouseEnter = ref(false)
37
+ const isClick = ref(props.active || false)
38
+
39
+ watch(() => props.active, (val) => { isClick.value = !!val })
40
+
41
+ const noticeCount = ref(props.noticeCount || 0)
42
+ watch(() => props.noticeCount, (val) => { noticeCount.value = val || 0 })
43
+
44
+ const mouseEnterIcon = () => { isMouseEnter.value = true }
45
+ const mouseLeaveIcon = () => { isMouseEnter.value = false }
46
+
47
+ /** 显示通知 */
48
+ const showNotice = () => {
49
+ isClick.value = !isClick.value
50
+ isMouseEnter.value = false
51
+ emit('click', isClick.value)
52
+ }
53
+
54
+ /** 外部关闭 */
55
+ const close = () => {
56
+ isClick.value = false
57
+ }
58
+
59
+ defineExpose({ close })
60
+ </script>
61
+
62
+ <style scoped lang='scss'>
63
+ @use '../styles/icon.scss';
64
+ </style>
@@ -0,0 +1,55 @@
1
+ <!--
2
+ * @description: 审批中心(抽屉展示)
3
+ * @fileName: todo-component.vue
4
+ !-->
5
+ <template>
6
+ <div>
7
+ <div :class="'icon-box ' + (isActive ? 'icon-box-active' : '')" @click="showTodo" id="tourToDoId"
8
+ @mouseenter="mouseEnterIcon" @mouseleave="mouseLeaveIcon" @mousemove="mouseEnterIcon" style="overflow: visible">
9
+ <el-badge :value="approvalCount" class="item" :max="99" :hidden="approvalCount === 0" :offset="[0, 2]">
10
+ <img :src="todoDefaultIcon" v-if="!isActive">
11
+ <img :src="todoActiveIcon" v-if="isActive">
12
+ </el-badge>
13
+ </div>
14
+ <div class="popover-tooltip-custom" ref="popoverTooptipRef" v-show="isMouseEnter && !isActive">
15
+ <div class="triangle-top"></div>
16
+ <div>审批中心</div>
17
+ </div>
18
+ </div>
19
+ </template>
20
+
21
+ <script setup lang='ts'>
22
+ import { ref, watch } from 'vue'
23
+ import todoDefaultIcon from '../../../assets/layout/todo-default.svg'
24
+ import todoActiveIcon from '../../../assets/layout/todo-active.svg'
25
+
26
+ const props = defineProps<{
27
+ approvalCount?: number
28
+ active?: boolean
29
+ }>()
30
+
31
+ const emit = defineEmits<{
32
+ (e: 'click'): void
33
+ }>()
34
+
35
+ const isMouseEnter = ref(false)
36
+ const isActive = ref(props.active || false)
37
+
38
+ watch(() => props.active, (val) => { isActive.value = !!val })
39
+
40
+ const mouseEnterIcon = () => { isMouseEnter.value = true }
41
+ const mouseLeaveIcon = () => { isMouseEnter.value = false }
42
+
43
+ const approvalCount = ref(props.approvalCount || 0)
44
+ watch(() => props.approvalCount, (val) => { approvalCount.value = val || 0 })
45
+
46
+ /** 点击审批中心 */
47
+ const showTodo = () => {
48
+ isActive.value = !isActive.value
49
+ emit('click')
50
+ }
51
+ </script>
52
+
53
+ <style scoped lang='scss'>
54
+ @use '../styles/icon.scss';
55
+ </style>
@@ -0,0 +1,24 @@
1
+ // Layout components
2
+ export { default as SysHeader } from './SysHeader.vue'
3
+ export { default as SysHeaderLeft } from './SysHeaderLeft.vue'
4
+ export { default as SysHeaderRight } from './SysHeaderRight.vue'
5
+ export { default as SysHeaderTabs } from './SysHeaderTabs.vue'
6
+ export { default as SideMenu } from './sideMenu.vue'
7
+ export { default as SideMenuSonList } from './sideMenuSonList.vue'
8
+ export { default as PersonalizationGuideDialog } from './personalization-guide-dialog.vue'
9
+ export { default as MessageNotificationDrawer } from './message/message-notification-drawer.vue'
10
+
11
+ // Sub-components
12
+ export { default as DarkComponent } from './components/dark-component.vue'
13
+ export { default as FontSizeComponent } from './components/font-size-component.vue'
14
+ export { default as MenuPositionComponent } from './components/menu-position-component.vue'
15
+ export { default as DownloadComponent } from './components/download-component.vue'
16
+ export { default as TodoComponent } from './components/todo-component.vue'
17
+ export { default as MessageComponent } from './components/message-component.vue'
18
+ export { default as AvatarComponent } from './components/avatar-component.vue'
19
+
20
+ // Types
21
+ export * from './types'
22
+
23
+ // Message dictionary
24
+ export { NOTIFICATION_TYPE } from './message/message-dictionary'
@@ -0,0 +1,27 @@
1
+ /** 通知类型字典 */
2
+ export const NOTIFICATION_TYPE: {name: string, id: string}[] = [
3
+ {
4
+ name: "全部通知",
5
+ id: "all",
6
+ },
7
+ {
8
+ name: "未读通知",
9
+ id: "unread",
10
+ },
11
+ {
12
+ name: "审批通知",
13
+ id: "approval-notice",
14
+ },
15
+ {
16
+ name: "系统通知",
17
+ id: "system-notice",
18
+ },
19
+ {
20
+ name: "公告通知",
21
+ id: "message-notice",
22
+ },
23
+ {
24
+ name: "导出通知",
25
+ id: "file-notice",
26
+ },
27
+ ];
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34">
2
+ <g id="组_1253" data-name="组 1253" transform="translate(19670.5 18180)">
3
+ <g id="组_1085" data-name="组 1085" transform="translate(-19899.422 -18315.922)">
4
+ <rect id="BG" width="34" height="34" rx="4" transform="translate(228.923 135.922)" fill="none"/>
5
+ <path id="通知管理" d="M123.644,88.482h-2.008V77.655a10.081,10.081,0,0,0-6.438-9.371,3.7,3.7,0,0,0-7.255.01,10.121,10.121,0,0,0-6.437,9.4V88.483h-1.95a1.006,1.006,0,0,0,0,2.01h7.575a4.808,4.808,0,0,0,8.889,0h7.624a1.006,1.006,0,0,0,0-2.01Zm-12.072-21.6a2.123,2.123,0,0,1,1.712.871,10.026,10.026,0,0,0-3.43.006A2.123,2.123,0,0,1,111.571,66.882ZM103.518,77.69a7.956,7.956,0,0,1,.635-3.128,8.168,8.168,0,0,1,4.308-4.308,8,8,0,0,1,6.242,0,8.133,8.133,0,0,1,4.286,4.289,7.921,7.921,0,0,1,.633,3.113V88.48h-16.1Zm8.058,14.2a3.235,3.235,0,0,1-2.664-1.4h5.33A3.235,3.235,0,0,1,111.575,91.894Z" transform="translate(134.322 73.533)" fill="#409eff"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34">
2
+ <g id="组_1252" data-name="组 1252" transform="translate(19670.5 18180)">
3
+ <g id="组_1085" data-name="组 1085" transform="translate(-19899.422 -18315.922)">
4
+ <rect id="BG" width="34" height="34" rx="4" transform="translate(228.923 135.922)" fill="none"/>
5
+ <path id="通知管理" d="M123.644,88.482h-2.008V77.655a10.081,10.081,0,0,0-6.438-9.371,3.7,3.7,0,0,0-7.255.01,10.121,10.121,0,0,0-6.437,9.4V88.483h-1.95a1.006,1.006,0,0,0,0,2.01h7.575a4.808,4.808,0,0,0,8.889,0h7.624a1.006,1.006,0,0,0,0-2.01Zm-12.072-21.6a2.123,2.123,0,0,1,1.712.871,10.026,10.026,0,0,0-3.43.006A2.123,2.123,0,0,1,111.571,66.882ZM103.518,77.69a7.956,7.956,0,0,1,.635-3.128,8.168,8.168,0,0,1,4.308-4.308,8,8,0,0,1,6.242,0,8.133,8.133,0,0,1,4.286,4.289,7.921,7.921,0,0,1,.633,3.113V88.48h-16.1Zm8.058,14.2a3.235,3.235,0,0,1-2.664-1.4h5.33A3.235,3.235,0,0,1,111.575,91.894Z" transform="translate(134.322 73.533)" fill="#303133"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34">
2
+ <g id="组_1251" data-name="组 1251" transform="translate(19670.5 18180)">
3
+ <g id="组_1085" data-name="组 1085" transform="translate(-19899.422 -18315.922)">
4
+ <rect id="BG" width="34" height="34" rx="4" transform="translate(228.923 135.922)" fill="none"/>
5
+ <path id="通知管理" d="M123.644,88.482h-2.008V77.655a10.081,10.081,0,0,0-6.438-9.371,3.7,3.7,0,0,0-7.255.01,10.121,10.121,0,0,0-6.437,9.4V88.483h-1.95a1.006,1.006,0,0,0,0,2.01h7.575a4.808,4.808,0,0,0,8.889,0h7.624a1.006,1.006,0,0,0,0-2.01Zm-12.072-21.6a2.123,2.123,0,0,1,1.712.871,10.026,10.026,0,0,0-3.43.006A2.123,2.123,0,0,1,111.571,66.882ZM103.518,77.69a7.956,7.956,0,0,1,.635-3.128,8.168,8.168,0,0,1,4.308-4.308,8,8,0,0,1,6.242,0,8.133,8.133,0,0,1,4.286,4.289,7.921,7.921,0,0,1,.633,3.113V88.48h-16.1Zm8.058,14.2a3.235,3.235,0,0,1-2.664-1.4h5.33A3.235,3.235,0,0,1,111.575,91.894Z" transform="translate(134.322 73.533)" fill="#909399"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34">
2
+ <g id="组_1173" data-name="组 1173" transform="translate(19670.5 18180)">
3
+ <g id="组_1085" data-name="组 1085" transform="translate(-19899.422 -18315.922)">
4
+ <rect id="BG" width="34" height="34" rx="4" transform="translate(228.923 135.922)" fill="none"/>
5
+ <g id="公告-通知-02" transform="translate(198.822 94.127)">
6
+ <path id="路径_375" data-name="路径 375" d="M57.633,351.844H36.612a2.4,2.4,0,0,1-2.512-2.3V336.8a2.4,2.4,0,0,1,2.512-2.3H57.586a2.4,2.4,0,0,1,2.512,2.3V349.59A2.319,2.319,0,0,1,57.633,351.844ZM36.612,335.88a1.043,1.043,0,0,0-1.117.919V349.59a1.041,1.041,0,0,0,1.117.919H57.586a1.043,1.043,0,0,0,1.117-.919V336.8a1.041,1.041,0,0,0-1.117-.919Z" transform="translate(0 -280.353)" fill="#409eff"/>
7
+ <path id="路径_376" data-name="路径 376" d="M265.265,145.91l.966-1.01,5.215,5.455-.966,1.01Zm-7.365,4.467,5.215-5.455.966,1.01-5.215,5.455Z" transform="translate(-217.555 -96.043)" fill="#409eff"/>
8
+ <path id="路径_377" data-name="路径 377" d="M193.132,50.386a2.144,2.144,0,1,1,2.07-2.143A2.1,2.1,0,0,1,193.132,50.386Zm0-2.857a.715.715,0,1,0,.69.714A.718.718,0,0,0,193.132,47.529ZM201.274,60H184.99a.715.715,0,0,1,0-1.429h16.284a.715.715,0,0,1,0,1.429Zm0,3.812H184.99a.715.715,0,0,1,0-1.429h16.284a.715.715,0,0,1,0,1.429Zm-6.026,3.856H184.99a.715.715,0,0,1,0-1.429h10.258a.715.715,0,0,1,0,1.429Z" transform="translate(-146.009)" fill="#409eff"/>
9
+ </g>
10
+ </g>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34">
2
+ <g id="组_1171" data-name="组 1171" transform="translate(19670.5 18180)">
3
+ <g id="组_1085" data-name="组 1085" transform="translate(-19899.422 -18315.922)">
4
+ <rect id="BG" width="34" height="34" rx="4" transform="translate(228.923 135.922)" fill="none"/>
5
+ <g id="公告-通知-02" transform="translate(198.822 94.127)">
6
+ <path id="路径_375" data-name="路径 375" d="M57.633,351.844H36.612a2.4,2.4,0,0,1-2.512-2.3V336.8a2.4,2.4,0,0,1,2.512-2.3H57.586a2.4,2.4,0,0,1,2.512,2.3V349.59A2.319,2.319,0,0,1,57.633,351.844ZM36.612,335.88a1.043,1.043,0,0,0-1.117.919V349.59a1.041,1.041,0,0,0,1.117.919H57.586a1.043,1.043,0,0,0,1.117-.919V336.8a1.041,1.041,0,0,0-1.117-.919Z" transform="translate(0 -280.353)" fill="#303133"/>
7
+ <path id="路径_376" data-name="路径 376" d="M265.265,145.91l.966-1.01,5.215,5.455-.966,1.01Zm-7.365,4.467,5.215-5.455.966,1.01-5.215,5.455Z" transform="translate(-217.555 -96.043)" fill="#303133"/>
8
+ <path id="路径_377" data-name="路径 377" d="M193.132,50.386a2.144,2.144,0,1,1,2.07-2.143A2.1,2.1,0,0,1,193.132,50.386Zm0-2.857a.715.715,0,1,0,.69.714A.718.718,0,0,0,193.132,47.529ZM201.274,60H184.99a.715.715,0,0,1,0-1.429h16.284a.715.715,0,0,1,0,1.429Zm0,3.812H184.99a.715.715,0,0,1,0-1.429h16.284a.715.715,0,0,1,0,1.429Zm-6.026,3.856H184.99a.715.715,0,0,1,0-1.429h10.258a.715.715,0,0,1,0,1.429Z" transform="translate(-146.009)" fill="#303133"/>
9
+ </g>
10
+ </g>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34">
2
+ <g id="组_1166" data-name="组 1166" transform="translate(19670.5 18180)">
3
+ <g id="组_1085" data-name="组 1085" transform="translate(-19899.422 -18315.922)">
4
+ <rect id="BG" width="34" height="34" rx="4" transform="translate(228.923 135.922)" fill="none"/>
5
+ <g id="公告-通知-02" transform="translate(198.822 94.127)">
6
+ <path id="路径_375" data-name="路径 375" d="M57.633,351.844H36.612a2.4,2.4,0,0,1-2.512-2.3V336.8a2.4,2.4,0,0,1,2.512-2.3H57.586a2.4,2.4,0,0,1,2.512,2.3V349.59A2.319,2.319,0,0,1,57.633,351.844ZM36.612,335.88a1.043,1.043,0,0,0-1.117.919V349.59a1.041,1.041,0,0,0,1.117.919H57.586a1.043,1.043,0,0,0,1.117-.919V336.8a1.041,1.041,0,0,0-1.117-.919Z" transform="translate(0 -280.353)" fill="#909399"/>
7
+ <path id="路径_376" data-name="路径 376" d="M265.265,145.91l.966-1.01,5.215,5.455-.966,1.01Zm-7.365,4.467,5.215-5.455.966,1.01-5.215,5.455Z" transform="translate(-217.555 -96.043)" fill="#909399"/>
8
+ <path id="路径_377" data-name="路径 377" d="M193.132,50.386a2.144,2.144,0,1,1,2.07-2.143A2.1,2.1,0,0,1,193.132,50.386Zm0-2.857a.715.715,0,1,0,.69.714A.718.718,0,0,0,193.132,47.529ZM201.274,60H184.99a.715.715,0,0,1,0-1.429h16.284a.715.715,0,0,1,0,1.429Zm0,3.812H184.99a.715.715,0,0,1,0-1.429h16.284a.715.715,0,0,1,0,1.429Zm-6.026,3.856H184.99a.715.715,0,0,1,0-1.429h10.258a.715.715,0,0,1,0,1.429Z" transform="translate(-146.009)" fill="#909399"/>
9
+ </g>
10
+ </g>
11
+ </g>
12
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34">
2
+ <g id="组_1256" data-name="组 1256" transform="translate(19670.5 18180)">
3
+ <g id="组_1085" data-name="组 1085" transform="translate(-19899.422 -18315.922)">
4
+ <rect id="BG" width="34" height="34" rx="4" transform="translate(228.923 135.922)" fill="none"/>
5
+ <path id="审批" d="M119.212,57.914H96.928a.928.928,0,0,1,0-1.857h22.284a.928.928,0,0,1,0,1.857Zm0-3.714H96.928A.931.931,0,0,1,96,53.272V48.629a2.794,2.794,0,0,1,2.785-2.785h5.942a6.541,6.541,0,0,0-1.532-3.11,6.513,6.513,0,0,1,5.153-10.817,6.509,6.509,0,0,1,4.5,10.91,5.57,5.57,0,0,0-1.439,3.018h5.942a2.794,2.794,0,0,1,2.785,2.785v4.642A.931.931,0,0,1,119.212,54.2ZM97.857,52.343h20.427V48.629a.931.931,0,0,0-.928-.928h-6.964a.931.931,0,0,1-.928-.928,7.581,7.581,0,0,1,2-5.2,4.633,4.633,0,0,0-3.2-7.8,4.51,4.51,0,0,0-3.389,1.3,4.6,4.6,0,0,0-1.439,3.343,4.659,4.659,0,0,0,1.161,3.064,8.029,8.029,0,0,1,2.089,5.292.931.931,0,0,1-.928.928H98.785a.931.931,0,0,0-.928.928Z" transform="translate(137.852 108.008)" fill="#409eff"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34">
2
+ <g id="组_1255" data-name="组 1255" transform="translate(19670.5 18180)">
3
+ <g id="组_1085" data-name="组 1085" transform="translate(-19899.422 -18315.922)">
4
+ <rect id="BG" width="34" height="34" rx="4" transform="translate(228.923 135.922)" fill="none"/>
5
+ <path id="审批" d="M119.212,57.914H96.928a.928.928,0,0,1,0-1.857h22.284a.928.928,0,0,1,0,1.857Zm0-3.714H96.928A.931.931,0,0,1,96,53.272V48.629a2.794,2.794,0,0,1,2.785-2.785h5.942a6.541,6.541,0,0,0-1.532-3.11,6.513,6.513,0,0,1,5.153-10.817,6.509,6.509,0,0,1,4.5,10.91,5.57,5.57,0,0,0-1.439,3.018h5.942a2.794,2.794,0,0,1,2.785,2.785v4.642A.931.931,0,0,1,119.212,54.2ZM97.857,52.343h20.427V48.629a.931.931,0,0,0-.928-.928h-6.964a.931.931,0,0,1-.928-.928,7.581,7.581,0,0,1,2-5.2,4.633,4.633,0,0,0-3.2-7.8,4.51,4.51,0,0,0-3.389,1.3,4.6,4.6,0,0,0-1.439,3.343,4.659,4.659,0,0,0,1.161,3.064,8.029,8.029,0,0,1,2.089,5.292.931.931,0,0,1-.928.928H98.785a.931.931,0,0,0-.928.928Z" transform="translate(137.852 108.008)" fill="#303133"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34">
2
+ <g id="组_1254" data-name="组 1254" transform="translate(19670.5 18180)">
3
+ <g id="组_1085" data-name="组 1085" transform="translate(-19899.422 -18315.922)">
4
+ <rect id="BG" width="34" height="34" rx="4" transform="translate(228.923 135.922)" fill="none"/>
5
+ <path id="审批" d="M119.212,57.914H96.928a.928.928,0,0,1,0-1.857h22.284a.928.928,0,0,1,0,1.857Zm0-3.714H96.928A.931.931,0,0,1,96,53.272V48.629a2.794,2.794,0,0,1,2.785-2.785h5.942a6.541,6.541,0,0,0-1.532-3.11,6.513,6.513,0,0,1,5.153-10.817,6.509,6.509,0,0,1,4.5,10.91,5.57,5.57,0,0,0-1.439,3.018h5.942a2.794,2.794,0,0,1,2.785,2.785v4.642A.931.931,0,0,1,119.212,54.2ZM97.857,52.343h20.427V48.629a.931.931,0,0,0-.928-.928h-6.964a.931.931,0,0,1-.928-.928,7.581,7.581,0,0,1,2-5.2,4.633,4.633,0,0,0-3.2-7.8,4.51,4.51,0,0,0-3.389,1.3,4.6,4.6,0,0,0-1.439,3.343,4.659,4.659,0,0,0,1.161,3.064,8.029,8.029,0,0,1,2.089,5.292.931.931,0,0,1-.928.928H98.785a.931.931,0,0,0-.928.928Z" transform="translate(137.852 108.008)" fill="#909399"/>
6
+ </g>
7
+ </g>
8
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34">
2
+ <g id="组_1174" data-name="组 1174" transform="translate(19670.5 18037)">
3
+ <g id="组_1091" data-name="组 1091" transform="translate(-19899.422 -18172.922)">
4
+ <rect id="BG" width="34" height="34" rx="4" transform="translate(228.923 135.922)" fill="none"/>
5
+ <g id="组_1092" data-name="组 1092" transform="translate(3.922 1.921)">
6
+ <rect id="BG-2" data-name="BG" width="25.889" height="25.889" transform="translate(229 138.11)" fill="none"/>
7
+ <g id="组_788" data-name="组 788" transform="translate(229 138.001)">
8
+ <path id="待导出" d="M54.7,93.091a2.106,2.106,0,0,1,1.669.852l2.057,2.692H69.273a3.432,3.432,0,0,1,3.272,3.569v15.1a3.645,3.645,0,0,1-3.471,3.787H50.016a3.643,3.643,0,0,1-3.471-3.787V96.878a3.643,3.643,0,0,1,3.471-3.787Zm.2,1.97H49.818a1.369,1.369,0,0,0-1.3,1.423v19.474a1.371,1.371,0,0,0,1.3,1.423H69.271a1.369,1.369,0,0,0,1.3-1.423V99.81a1.158,1.158,0,0,0-1.108-1.2H58.63a2.106,2.106,0,0,1-1.669-.852L54.9,95.062Zm5.426,7.958,3.25,3.544a1.251,1.251,0,0,1,0,1.668,1.031,1.031,0,0,1-.768.347,1.059,1.059,0,0,1-.767-.347l-1.4-1.524v5.7a1.1,1.1,0,0,1-2.17-.006v-5.691l-1.4,1.524a1.015,1.015,0,0,1-1.529,0,1.251,1.251,0,0,1,0-1.668l3.25-3.544a1.015,1.015,0,0,1,1.529,0Z" transform="translate(-46.545 -93.091)" fill="#409eff"/>
9
+ </g>
10
+ </g>
11
+ </g>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34">
2
+ <g id="组_1172" data-name="组 1172" transform="translate(19670.5 18037)">
3
+ <g id="组_1091" data-name="组 1091" transform="translate(-19899.422 -18172.922)">
4
+ <rect id="BG" width="34" height="34" rx="4" transform="translate(228.923 135.922)" fill="none"/>
5
+ <g id="组_1092" data-name="组 1092" transform="translate(3.922 1.921)">
6
+ <rect id="BG-2" data-name="BG" width="25.889" height="25.889" transform="translate(229 138.11)" fill="none"/>
7
+ <g id="组_788" data-name="组 788" transform="translate(229 138.001)">
8
+ <path id="待导出" d="M54.7,93.091a2.106,2.106,0,0,1,1.669.852l2.057,2.692H69.273a3.432,3.432,0,0,1,3.272,3.569v15.1a3.645,3.645,0,0,1-3.471,3.787H50.016a3.643,3.643,0,0,1-3.471-3.787V96.878a3.643,3.643,0,0,1,3.471-3.787Zm.2,1.97H49.818a1.369,1.369,0,0,0-1.3,1.423v19.474a1.371,1.371,0,0,0,1.3,1.423H69.271a1.369,1.369,0,0,0,1.3-1.423V99.81a1.158,1.158,0,0,0-1.108-1.2H58.63a2.106,2.106,0,0,1-1.669-.852L54.9,95.062Zm5.426,7.958,3.25,3.544a1.251,1.251,0,0,1,0,1.668,1.031,1.031,0,0,1-.768.347,1.059,1.059,0,0,1-.767-.347l-1.4-1.524v5.7a1.1,1.1,0,0,1-2.17-.006v-5.691l-1.4,1.524a1.015,1.015,0,0,1-1.529,0,1.251,1.251,0,0,1,0-1.668l3.25-3.544a1.015,1.015,0,0,1,1.529,0Z" transform="translate(-46.545 -93.091)" fill="#303133"/>
9
+ </g>
10
+ </g>
11
+ </g>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34">
2
+ <g id="组_1094" data-name="组 1094" transform="translate(19670.5 18037)">
3
+ <g id="组_1091" data-name="组 1091" transform="translate(-19899.422 -18172.922)">
4
+ <rect id="BG" width="34" height="34" rx="4" transform="translate(228.923 135.922)" fill="none"/>
5
+ <g id="组_1092" data-name="组 1092" transform="translate(3.922 1.921)">
6
+ <rect id="BG-2" data-name="BG" width="25.889" height="25.889" transform="translate(229 138.11)" fill="none"/>
7
+ <g id="组_788" data-name="组 788" transform="translate(229 138.001)">
8
+ <path id="待导出" d="M54.7,93.091a2.106,2.106,0,0,1,1.669.852l2.057,2.692H69.273a3.432,3.432,0,0,1,3.272,3.569v15.1a3.645,3.645,0,0,1-3.471,3.787H50.016a3.643,3.643,0,0,1-3.471-3.787V96.878a3.643,3.643,0,0,1,3.471-3.787Zm.2,1.97H49.818a1.369,1.369,0,0,0-1.3,1.423v19.474a1.371,1.371,0,0,0,1.3,1.423H69.271a1.369,1.369,0,0,0,1.3-1.423V99.81a1.158,1.158,0,0,0-1.108-1.2H58.63a2.106,2.106,0,0,1-1.669-.852L54.9,95.062Zm5.426,7.958,3.25,3.544a1.251,1.251,0,0,1,0,1.668,1.031,1.031,0,0,1-.768.347,1.059,1.059,0,0,1-.767-.347l-1.4-1.524v5.7a1.1,1.1,0,0,1-2.17-.006v-5.691l-1.4,1.524a1.015,1.015,0,0,1-1.529,0,1.251,1.251,0,0,1,0-1.668l3.25-3.544a1.015,1.015,0,0,1,1.529,0Z" transform="translate(-46.545 -93.091)" fill="#909399"/>
9
+ </g>
10
+ </g>
11
+ </g>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34">
2
+ <g id="组_1250" data-name="组 1250" transform="translate(19670.5 18180)">
3
+ <g id="组_1085" data-name="组 1085" transform="translate(-19899.422 -18315.922)">
4
+ <rect id="BG" width="34" height="34" rx="4" transform="translate(228.923 135.922)" fill="none"/>
5
+ <g id="未读" transform="translate(190.275 140.146)">
6
+ <path id="路径_389" data-name="路径 389" d="M62.154,1.918a1.065,1.065,0,0,1-1.124,1.81,10.646,10.646,0,1,0,5.037,9.049,1.065,1.065,0,1,1,2.129,0A12.774,12.774,0,1,1,62.154,1.918ZM51.066,13.842a1.065,1.065,0,1,1,1.065-1.065A1.065,1.065,0,0,1,51.066,13.842Zm4.356,0a1.065,1.065,0,1,1,1.065-1.065A1.065,1.065,0,0,1,55.422,13.842Zm4.356,0a1.065,1.065,0,1,1,1.065-1.065A1.065,1.065,0,0,1,59.778,13.842Z" transform="translate(0 0)" fill="#409eff"/>
7
+ <path id="路径_390" data-name="路径 390" d="M831.813,165.06m-3.2,0a3.2,3.2,0,1,0,3.2-3.2A3.2,3.2,0,0,0,828.61,165.06Z" transform="translate(-766.369 -157.822)" fill="#409eff"/>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34">
2
+ <g id="组_1249" data-name="组 1249" transform="translate(19670.5 18180)">
3
+ <g id="组_1085" data-name="组 1085" transform="translate(-19899.422 -18315.922)">
4
+ <rect id="BG" width="34" height="34" rx="4" transform="translate(228.923 135.922)" fill="none"/>
5
+ <g id="未读" transform="translate(190.275 140.146)">
6
+ <path id="路径_389" data-name="路径 389" d="M62.154,1.918a1.065,1.065,0,0,1-1.124,1.81,10.646,10.646,0,1,0,5.037,9.049,1.065,1.065,0,1,1,2.129,0A12.774,12.774,0,1,1,62.154,1.918ZM51.066,13.842a1.065,1.065,0,1,1,1.065-1.065A1.065,1.065,0,0,1,51.066,13.842Zm4.356,0a1.065,1.065,0,1,1,1.065-1.065A1.065,1.065,0,0,1,55.422,13.842Zm4.356,0a1.065,1.065,0,1,1,1.065-1.065A1.065,1.065,0,0,1,59.778,13.842Z" transform="translate(0 0)" fill="#303133"/>
7
+ <path id="路径_390" data-name="路径 390" d="M831.813,165.06m-3.2,0a3.2,3.2,0,1,0,3.2-3.2A3.2,3.2,0,0,0,828.61,165.06Z" transform="translate(-766.369 -157.822)" fill="#303133"/>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34">
2
+ <g id="组_1087" data-name="组 1087" transform="translate(19670.5 18180)">
3
+ <g id="组_1085" data-name="组 1085" transform="translate(-19899.422 -18315.922)">
4
+ <rect id="BG" width="34" height="34" rx="4" transform="translate(228.923 135.922)" fill="none"/>
5
+ <g id="未读" transform="translate(190.275 140.146)">
6
+ <path id="路径_389" data-name="路径 389" d="M62.154,1.918a1.065,1.065,0,0,1-1.124,1.81,10.646,10.646,0,1,0,5.037,9.049,1.065,1.065,0,1,1,2.129,0A12.774,12.774,0,1,1,62.154,1.918ZM51.066,13.842a1.065,1.065,0,1,1,1.065-1.065A1.065,1.065,0,0,1,51.066,13.842Zm4.356,0a1.065,1.065,0,1,1,1.065-1.065A1.065,1.065,0,0,1,55.422,13.842Zm4.356,0a1.065,1.065,0,1,1,1.065-1.065A1.065,1.065,0,0,1,59.778,13.842Z" transform="translate(0 0)" fill="#909399"/>
7
+ <path id="路径_390" data-name="路径 390" d="M831.813,165.06m-3.2,0a3.2,3.2,0,1,0,3.2-3.2A3.2,3.2,0,0,0,828.61,165.06Z" transform="translate(-766.369 -157.822)" fill="#909399"/>
8
+ </g>
9
+ </g>
10
+ </g>
11
+ </svg>
@@ -0,0 +1,17 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160">
2
+ <g id="组_1125" data-name="组 1125" transform="translate(-228.923 -135.922)">
3
+ <rect id="BG" width="160" height="160" transform="translate(228.923 135.922)" fill="none"/>
4
+ <g id="空状态" transform="translate(228.923 158.527)">
5
+ <path id="路径_324" data-name="路径 324" d="M0,631.2c0,12.777,35.816,23.135,80,23.135s80-10.356,80-23.134-35.819-23.132-80-23.132S0,618.422,0,631.2Z" transform="translate(0 -539.542)" fill="#f4f4f5"/>
6
+ <path id="路径_325" data-name="路径 325" d="M243.984,641.136c0,8.394,23.557,15.194,52.616,15.194s52.617-6.8,52.617-15.2-23.557-15.2-52.616-15.2-52.617,6.8-52.617,15.2h0Z" transform="translate(-216.6 -555.411)" fill="#e9e9eb"/>
7
+ <path id="路径_326" data-name="路径 326" d="M326.674,173.013l38.657-8.095v68.7l-35.986-9.947Z" transform="translate(-289.893 -146.297)" fill="#acaeb2"/>
8
+ <path id="路径_327" data-name="路径 327" d="M669.874,179.135l-.031-14.192,45.717,4.709-37.938,10.872Z" transform="translate(-594.437 -146.349)" fill="#909399"/>
9
+ <path id="路径_328" data-name="路径 328" d="M364.816,298.892l-.231,58.526-45.109-11.683V309.3l45.341-10.408ZM334.4,318.44a1.7,1.7,0,1,0-.581,3.353l14.8,2.658a1.7,1.7,0,1,0,.581-3.351l-14.8-2.661Z" transform="translate(-283.499 -265.18)" fill="#c2c3c7"/>
10
+ <path id="路径_329" data-name="路径 329" d="M721.386,357.423l40.83-14.111V307.574l-40.83-8.674v58.525Z" transform="translate(-640.159 -265.187)" fill="#d2d4d6"/>
11
+ <path id="路径_330" data-name="路径 330" d="M226.613,237.043l-12.259,17.35L259,263.3l12.259-19.317Z" transform="translate(-190.206 -210.355)" fill="#f4f4f5"/>
12
+ <path id="路径_331" data-name="路径 331" d="M735.049,234.579l38.979-12.839-11.793-15.614-39.789,10.408,12.6,18.044Zm1.156,10.759,15.037-4.049V251.7l-15.037,4.858V245.338Z" transform="translate(-641.073 -182.892)" fill="#e9e9eb"/>
13
+ <path id="路径_332" data-name="路径 332" d="M863.615,565.138v-.7l5.55-1.734v.695Zm0,2.312v-.695l4.625-1.387v.694l-4.625,1.389Zm0,2.312v-.694l7.748-2.43v.695Z" transform="translate(-766.442 -499.39)" fill="#d2d4d6"/>
14
+ <path id="路径_333" data-name="路径 333" d="M608.024,1.738A1.735,1.735,0,1,0,609.758,0a1.735,1.735,0,0,0-1.734,1.737Zm8.1,0A1.735,1.735,0,1,0,617.856,0a1.735,1.735,0,0,0-1.734,1.737Zm8.1,0A1.736,1.736,0,1,0,625.953,0a1.736,1.736,0,0,0-1.735,1.738Z" transform="translate(-539.595 0)" fill="#acaeb2"/>
15
+ </g>
16
+ </g>
17
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="34" height="34" viewBox="0 0 34 34">
2
+ <g id="组_1175" data-name="组 1175" transform="translate(19670.5 18180)">
3
+ <g id="组_1085" data-name="组 1085" transform="translate(-19899.422 -18315.922)">
4
+ <rect id="BG" width="34" height="34" rx="4" transform="translate(228.923 135.922)" fill="none"/>
5
+ <g id="组_1167" data-name="组 1167">
6
+ <path id="公告" d="M13.939.144A1.028,1.028,0,0,0,13.506,0a1.01,1.01,0,0,0-.65.216c-.144.144-1.517,1.3-3.033,2.449A22.248,22.248,0,0,1,6.139,5.258H.867A.894.894,0,0,0,0,6.194V19.806a.894.894,0,0,0,.867.936H6.789a16.306,16.306,0,0,1,3.322,2.521c.794.72,1.733,1.584,2.672,2.377l.072.072a.929.929,0,0,0,.722.288.918.918,0,0,0,.433-.072,1.219,1.219,0,0,0,.65-1.008V20.31c0-.072-.072-18.87-.072-19.086a1.2,1.2,0,0,0-.65-1.08ZM12.783,20.022v2.953c-.433-.432-.867-.792-1.3-1.152C8.233,19.014,7.367,18.8,6.789,18.8H2.383c-.506,0-.65-.144-.65-.72V7.706c0-.432.072-.576.433-.576H6.139c.578,0,1.372-.216,4.983-3.025.578-.432,1.156-.864,1.661-1.3V20.022Z" transform="translate(232.922 139.922)" fill="#409eff"/>
7
+ <line id="直线_174" data-name="直线 174" y1="4.338" x2="5.061" transform="translate(251.922 140.607)" fill="none" stroke="#409eff" stroke-linecap="round" stroke-width="1.5"/>
8
+ <line id="直线_175" data-name="直线 175" x2="5.061" y2="4.338" transform="translate(251.922 160.898)" fill="none" stroke="#409eff" stroke-linecap="round" stroke-width="1.5"/>
9
+ <line id="直线_176" data-name="直线 176" x2="7" transform="translate(251.922 152.922)" fill="none" stroke="#409eff" stroke-linecap="round" stroke-width="1.5"/>
10
+ </g>
11
+ </g>
12
+ </g>
13
+ </svg>