# SaaS_IHRM_Vue **Repository Path**: zp315/SaaS_IHRM_Vue ## Basic Information - **Project Name**: SaaS_IHRM_Vue - **Description**: 基于SpringBoot2.0+Shiro+SpringDataJpa+SpringCloud框架的SaaS多租户iHrm平台开发实战,里面涉及到知识点众多,项目基于前后端分离进行开发,前端使用的是vue+ElementUI。 除了常见的框架应用之外,还有导出导入表格(POI),如何处理百万数据防止oom, 图片上传(七牛云接口实现),刷脸认证(百度开放平台API), 以及Shiro高级认证,如何实现在前后端分离环境下完成认证授权。 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2022-08-05 - **Last Updated**: 2022-08-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SaaS IHRM 系统 [![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=Han-YLun&repo=SaaS_IHRM_Vue)](https://github.com/Han-YLun/SaaS_IHRM_Vue) [![知识共享协议(CC协议)](https://img.shields.io/badge/License-Creative%20Commons-DC3D24.svg)](https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh) [![GitHub stars](https://img.shields.io/github/stars/Han-YLun/SaaS_IHRM_Vue.svg?style=flat&label=Star)](https://github.com/Han-YLun/SaaS_IHRM_Vue/stargazers) [![GitHub forks](https://img.shields.io/github/forks/Han-YLun/SaaS_IHRM_Vue.svg?style=flat&label=Fork)](https://github.com/Han-YLun/SaaS_IHRM_Vue/fork) [![GitHub watchers](https://img.shields.io/github/watchers/Han-YLun/SaaS_IHRM_Vue.svg?style=flat&label=Watch)](https://github.com/Han-YLun/SaaS_IHRM_Vue/watchers) [![GitHub followers](https://img.shields.io/github/followers/Han-YLun.svg?label=%E5%85%B3%E6%B3%A8)](https://github.com/Han-YLun/SaaS_IHRM_Vue) ## Run ### 1. Install node.js https://nodejs.org/en/ ### 2.Run Project 先安装依赖包,然后安装mockjs依赖包,最后运行 ```shell cnpm install cnpm install mockjs npm run dev ``` ### 3. Config API Address 编辑文件 config/index.js 修改 `api` `upfile` 转发配置 ```js module.exports = { dev: { // Paths assetsSubDirectory: 'static', assetsPublicPath: '', proxyTable: { //企业信息请求的远程服务 //Updated 将直接对后台问服务请求,改为请求Zuul网关 '/api': { target: 'http://localhost:9091', changeOrigin: true, pathRewrite: { '^/api': '' } } }, } ``` 启动教程: [https://www.cnblogs.com/ArvinYL/p/14457187.html](https://www.cnblogs.com/ArvinYL/p/14457187.html) ## 后端 后端使用微服务编写,使用SpringBoot + SpringCloud + SpringMVC + SpringData 地址为:https://github.com/Han-YLun/SaaS_IHRM