fxfast-code/ruoyi-ui
who's hu 16d8b71e21
update ruoyi-ui/src/permission.js.
由于重定向url存在 http://xxx.xx.xxx/{id}?param={a}&name={b} 的场景, 当未登录访问时, 通过改js封装登录后重定向参数, 会丢失?后的query params
如:
访问 http://localhost:1024/core/doc/doc?id=1683734914907807745&version=31
期望 http://localhost:1024/login?redirect=%2Fcore%2Fdoc%2Fdoc%3Fid%3D1683734914907807745%26version%3D31
实际通过 to.fullPath 封装后 获得 http://localhost:1024/login?redirect=%2Fcore%2Fdoc%2Fdoc%3Fid%3D1683734914907807745&version=31

登录成功跳转到重定向参数url后, 导致version参数丢失.
需要对 to.fullPath 进行一次编码, 以保证重定向前 to.fullPath 的完整性.
通过 ${encodeURIComponent(to.fullPath)} 获得 http://localhost:1024/login?redirect=%2Fcore%2Fdoc%2Fdoc%3Fid%3D1683734914907807745%26version%3D31 完整url



Signed-off-by: who's hu <hup_dev@outlook.com>
2023-08-22 09:25:19 +00:00
..
bin update registry source 2022-03-30 10:39:09 +08:00
build RuoYi-Vue 1.0 2019-10-08 09:14:38 +08:00
public 若依 3.5.0 2021-05-25 09:37:55 +08:00
src update ruoyi-ui/src/permission.js. 2023-08-22 09:25:19 +00:00
.editorconfig RuoYi-Vue 1.0 2019-10-08 09:14:38 +08:00
.env.development 系统布局配置支持动态标题开关 2021-06-10 18:05:27 +08:00
.env.production 系统布局配置支持动态标题开关 2021-06-10 18:05:27 +08:00
.env.staging 系统布局配置支持动态标题开关 2021-06-10 18:05:27 +08:00
.eslintignore RuoYi-Vue 1.0 2019-10-08 09:14:38 +08:00
.eslintrc.js RuoYi-Vue 1.0 2019-10-08 09:14:38 +08:00
.gitignore RuoYi-Vue 1.0 2019-10-08 09:14:38 +08:00
README.md update registry source 2022-03-30 10:39:09 +08:00
babel.config.js reset babel 2022-06-14 21:26:14 +08:00
package.json 若依 3.8.6 2023-06-30 08:43:54 +08:00
vue.config.js 优化代码 2023-07-06 22:08:47 +08:00

README.md

开发

# 克隆项目
git clone https://gitee.com/y_project/RuoYi-Vue

# 进入项目目录
cd ruoyi-ui

# 安装依赖
npm install

# 建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题
npm install --registry=https://registry.npmmirror.com

# 启动服务
npm run dev

浏览器访问 http://localhost:80

发布

# 构建测试环境
npm run build:stage

# 构建生产环境
npm run build:prod