20 Star 190 Fork 69

呵呵彡 / my-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
LGPL-3.0

MyAdmin后台管理系统

介绍

该项目是一个前后端分离的项目,后端基于Spring Boot、MyBatis-Plus、Shiro+JWT并整合了Activiti工作流。前端基于Vue以及ElementUI,主要作为一个基础平台,包含后台管理系统中所需的所有功能,可直接在此基础上进行业务功能开发

  • 演示地址:http://101.34.139.112/
    • 演示环境说明:演示地址目前只有工作流示例生成代码展示可以进行增加及修改系列操作,其他功能只开放了查询操作
    • 账号:管理员(admin),其他用户(user1、user2、user3... 具体可查看系统中用户模块)
    • 密码:所有用户的密码都为123456
  • 相关文档:独立完成系统开发 系列博客,如果觉得写得不错或对你有帮助可以给个一键三连哈~
  • 源码
GitHub Gitee
https://github.com/cdfan/my-admin https://gitee.com/cdfan/my-admin

提示:项目暂未完全开源,如有需要可持续关注,谢谢

项目特性

  • 项目中内置代码生成器可以快速生成前后端代码,并且由于使用了MyBatis-Plus所以开发中基本不需要编写SQL,极大提高开发效率
  • 该系统集成了Activiti工作流,支持在线设计流程图以及关联业务并部署流程,并且系统中还提供了审批流和业务流的使用示例
  • 开发时严格遵循阿里Java代码规范,注释非常完整并且通过Swagger2生成接口文档,可以很好的支持前后端分离的的开发模式
  • 系统中包含各种监控,包括所有请求、登录、SQL及服务器性能的监控,便于实时查看及分析
  • 包含完善的日志记录及管理,便于后续的分析及排查
  • 同时支持Redis和EhCache缓存,可根据实际场景进行切换
  • 通过Token进行认证及鉴权,支持分布式及单机环境,可以很容易实现服务器的水平扩展
  • 支持接口级别的功能鉴权与数据鉴权,可自定义对权限进行分配
  • 前端包含一系列封装好的常用组件以及常用的图表组件,开箱即用
  • 系统采用响应式布局,除了支持PC端还支持移动端,并且还支持系统主题自由切换

系统功能

  • 首页:对本周和上周的访问数据进行统计对比
  • 系统管理
    • 用户管理:提供系统中用户的相关配置,可以给用户赋予角色及分配部门
    • 角色管理:对系统中的角色进行管理,可以给不同的角色配置不同的权限
    • 部门管理:提供系统中部门的相关配置
    • 菜单管理:维护系统的菜单及菜单中的按钮
    • 业务字典:用于维护系统中可枚举的数据
  • 系统监控
    • 日志监控
      • 登录日志:用于记录每个用户每次登录时的信息及状态
      • 操作日志:用于记录操作中所涉及的接口的请求信息,如果接口发生异常还会记录异常信息
    • 服务监控:对服务器的信息状态进行实时监控
    • 数据源监控:Druid提供的监控,用于监控数据源及操作的SQL信息
  • 系统工具
    • 代码生成:提供代码生成的配置以及生成代码等操作
    • 接口文档:通过Swagger生成的接口文档,里面包含每个接口的信息
    • 图标:包含系统中的所有图标,其中里面含有ElementUI内置图标以及自己添加的SVG图标
    • 图表:一些ECharts图表的使用示例
    • 地图:高德地图的使用示例,该示例提供位置定位以及位置搜索等功能
    • 常用组件:包含系统中封装的常用组件的使用示例
    • 错误页面:错误页面的示意图,包含404以及401的示意图
  • 工作流
    • 模型管理:用于维护工作流模型,支持在线设计流程图、查看流程文件及部署设计的流程
    • 流程管理:对部署之后的流程进行维护,支持部署外部流程文件以及将部署后的流程转为系统中的流程模型还有将流程跟业务进行关联等操作
    • 待办任务:当前登录人员的代办任务信息,可在该页面中对任务进行办理,如果有代办任务消息通知中会有相关提示
    • 已办任务:当前登录人员已经办理的所有任务,可对已办理任务所属流程的流程信息进行查看
    • 运行中流程:系统中所有正在运行的流程实例,可对这些流程进行查看及挂起等相关操作
    • 已结束流程:包含系统中所有已完成的流程实例,可对历史流程进行查看
    • 流程示例
      • 请假审批流演示:对审批流进行演示的示例,依附于请假这个业务,具体流程业务可查看相关流程模型
      • 购物流程业务流:对业务流进行演示的示例,依附于购物这个业务,具体流程业务可查看相关流程模型
  • 业务管理
    • 示例
      • 代码生成展示:展示了通过代码生成器生成代码后直接使用在系统中的样子
  • 个人中心:用于查看及维护个人信息,只有本人才能操作

技术栈

下面是本项目涉及到的技术,还有更细的没有一一列举出来,具体可以参考项目中的Maven以及npm依赖。

  • 前端
    • 基础的:HTML、JavaScript、CSS、ES6、SCSS
    • Vue系列及相关:Vue.js、Vuex、Vue Router 、Vue CLI,ElementUI、Axios
    • 插件:插件有很多这里简单列举几个:EChartss、js-xlsx、wangEditor、vue-amap等等
    • 其他:Node.js、webpack、Mock.js、ESLint、Babel
  • 后端
    • 基础的:Java
    • 框架:Spring Boot、MyBatis-Plus、Shiro、Swagger2、Activiti
    • 数据库:MySQL
    • 缓存:EhCache、Redis
    • 其他:JWT、Druid、Logback等等

特别鸣谢

  • 该项目前端主要基于vue-element-admin前端模板进行开发,感谢 PanJiaChen大佬提供的前端模板
  • 在项目开发过程中查资料的时候发现已经有大佬基于vue-element-admin开发了eladmin ,写的还是很不错的,因为都是基于vue-element-admin开发的所以有些功能的前端对该项目有所借鉴,感谢elunez大佬的开源分享

支持浏览器

chrome_48x48 firefox_48x48 edge_48x48 safari_48x48
Chrome Firefox Edge Safari

注意:不兼容IE(Internet Explorer)系列

系统预览

PC端

1 2
3 4
5 6
7 8
9 10
11 12
13 14
15 16
17 18
19 20
21 22
23 24
25 26
27 28
29 30
31 32

移动端

竖版 横版
1_1 2_1
1_2 2_2

工作流演示

注意:gif动图稍微有点大,如果GitHub上看不了可以到Gitee上面查看或自己到演示地址中测试

提示:Gitee中大于1M的文件要求登录后才能查看哦

请假审批流

leaveProcess

并行请假审批流

leaveProcessParallel

购物流程业务流

shopping

支持

如果觉得这个项目以及相关博客不错有帮助到了你,希望你可以去 Github或者 Gitee 帮我点个 ⭐ ,以及博客给个一键三连,这将对我是极大的鼓励,谢谢~

Gitee starGitHub star

GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License. "The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A "Combined Work" is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the "Linked Version". The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. b) Accompany the Combined Work with a copy of the GNU GPL and this license document. c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. d) Do one of the following: 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.

简介

MyAdmin后台管理系统 展开 收起
JavaScript 等 6 种语言
LGPL-3.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
1
https://gitee.com/cdfan/my-admin.git
git@gitee.com:cdfan/my-admin.git
cdfan
my-admin
my-admin
master

搜索帮助

14c37bed 8189591 565d56ea 8189591