From 0271aa5414843f662c74a683cfc36f5f799d2a3c Mon Sep 17 00:00:00 2001 From: guxin0123 <guxin0123@gmail.com> Date: 星期三, 16 三月 2022 12:52:33 +0800 Subject: [PATCH] update ruoyi-ui/src/store/modules/user.js. 修复数据库用户表 头像列为 null 时不显示默认头像问题 --- ruoyi-ui/src/components/HeaderSearch/index.vue | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/ruoyi-ui/src/components/HeaderSearch/index.vue b/ruoyi-ui/src/components/HeaderSearch/index.vue index ae952a9..0931184 100644 --- a/ruoyi-ui/src/components/HeaderSearch/index.vue +++ b/ruoyi-ui/src/components/HeaderSearch/index.vue @@ -70,9 +70,11 @@ this.show = false }, change(val) { + const path = val.path; if(this.ishttp(val.path)) { // http(s):// 路径新窗口打开 - window.open(val.path, "_blank"); + const pindex = path.indexOf("http"); + window.open(path.substr(pindex, path.length), "_blank"); } else { this.$router.push(val.path) } -- Gitblit v1.9.2