user login update

Raod 3 years ago
parent f37a8527b7
commit 7d2839c733

@ -20,18 +20,18 @@
## 数据流程图 ## 数据流程图
![An image](https://images.gitee.com/uploads/images/2021/0630/160451_31bb9052_1728982.png) ![An image](https://images.gitee.com/uploads/images/2021/0630/160451_31bb9052_1728982.png)
## 打包目录 ## 打包目录build
``` ```
├── bin 启动命令脚本 ├── bin 启动命令脚本
│ ├── logs 启动日志目录 │ ├── restart.sh
│ ├── cache 本地缓存目录 │ ├── start.bat
│ ├── startup.cmd │ ├── start.sh
├── shutdown.cmd └── stop.sh
│ ├── startup.sh ├── conf 配置文件目录
│ └── shutdown.sh │ └── bootstrap-dev.yml
├── config 配置文件目录 ├── logs 启动日志目录
├── lib 自定义扩展包 ├── cache 本地缓存目录
├── target report-core核心包 ├── lib 自定义扩展包&report-core核心包
``` ```
## 系统目录 ## 系统目录
@ -82,6 +82,7 @@ sh build.sh
unzip report-core-xxxx.zip unzip report-core-xxxx.zip
cd report-core-xxxx cd report-core-xxxx
vim conf/bootstrap-dev.yml 数据库连接
sh bin/start.sh sh bin/start.sh
启动后访问 启动后访问

@ -1,26 +1,34 @@
## 快速部署 ## 快速部署
下载地址:[https://gitee.com/anji-plus/report/releases](https://gitee.com/anji-plus/report/releases)
```js ```js
第一步下载zip包解压<br> 第一步下载zip包解压<br>
第二步config->application.properties修改mysql连接<br> 第二步conf->bootstrap-dev.yml修改mysql连接<br>
第三步启动bin目录下startup.cmd(Windows)或者startup.sh(Linux)<br> 第三步启动bin目录下start.sh<br>
第四步,访问 http://localhost:9095/index.html 第四步,访问 http://localhost:9095/index.html
``` ```
## 源码打包 ## 编译打包
```js 在Linux上先准备好maven、node.js、jdk
第一步cd report-ui - [Apache Maven] 3.5 +<br>
npm install - [Node.js] v14.16.0+<br>
npm run build - [Jdk] 1.8+
第二步cd report-core/src/main/resources/static ```
将第一步打包文件dist文件夹下所有文件copy到当前目录 git clone https://gitee.com/anji-plus/report.git
第三步cd cd report-core cd report
不可使用installinstall会报错的 sh build.sh
mvn clean package -Dmaven.test.skip=true 编译完成放在build文件夹 report-core-xxxx.zip
第四步,启动 java -jar report-core-1.0.0-SNAPSHOT.jar
也可以前后端分开单独部署前端部署nginx后端jar unzip report-core-xxxx.zip
cd report-core-xxxx
vim conf/bootstrap-dev.yml 数据库连接、上传文件的路径以及地址修改
sh bin/start.sh
启动后访问
http://serverip:9095
``` ```
也可以前后端分开单独部署前端部署nginx后端jar
## 系统特性 ## 系统特性
1. 最新最稳定的技术栈; 1. 最新最稳定的技术栈;
2. 支持多数据源配置 2. 支持多数据源配置

@ -131,10 +131,11 @@ export default {
placeholder: '', placeholder: '',
field: 'password', field: 'password',
tableHide: true, // tableHide: true, //
editHide: true,
editField: 'password', editField: 'password',
inputType: 'input', inputType: 'input',
rules: [ rules: [
{ required: true, message: '密码必填', trigger: 'blur' }, // { required: true, message: '', trigger: 'blur' },
{ min: 1, max: 128, message: '不超过128个字符', trigger: 'blur' }, { min: 1, max: 128, message: '不超过128个字符', trigger: 'blur' },
], ],
disabled: false, disabled: false,

Loading…
Cancel
Save