# 基于SpringBoot+vue的人事管理系统项目
**Repository Path**: kkai-regular-script/pmsdb
## Basic Information
- **Project Name**: 基于SpringBoot+vue的人事管理系统项目
- **Description**: 人事管理系统
- **Primary Language**: Java
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 16
- **Forks**: 6
- **Created**: 2021-06-08
- **Last Updated**: 2025-01-20
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# SpringBoot+Vue人事管理
## 项目介绍
基于SpringBoot+vue的人事管理系统
- 前端技术栈:vue + router + axios + elementUI
- 后端技术栈:springboot + mybatis + token + redis
- 主要功能有:用户管理、员工管理、考勤管理、部门管理、回收管理、个人中心
- pms-ui文件是前端代码,pms-parent分支是后端代码
## 项目目录结构
```
|-- README.md 项目说明
|-- babel.config.js 配置文件,将代码转为ES5语法
|-- dist 打包后的文件
| |-- favicon.ico
| |-- fonts 阿里icon图库
| |-- img
| |-- index.html 引入BootCDN资源
| |-- js
| `-- report.html 项目资源体积分析
|-- package-lock.json
|-- package.json
|-- public
| |-- favicon.ico
| `-- index.html
|-- src 源代码文件
| |-- App.vue 首页入口
| |-- api 业务代码,用于调用后端api接口方法
| |-- assets 静态资源
| |-- components 页面组件
| |-- main.js 引入相关配置信息
| |-- router 路由配置
| |-- utils 公共方法
| |-- views 页面
| `-- vue.config.js vue基础配置
```
|
## 演示图
#### 推送git命令
1. git init 初始化仓库
2. git remote add origin https://gitee.com/kk/projects/你的仓库名称 将本地仓库和远程仓库连接
3. git add . 添加所有文件
4. git commit -m "项目说明" 提交代码到远程仓库中
5. git push -u origin master 推送本地代码到远程仓库的master分支中