Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
finance-manage
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
finance-oa
finance-manage
Commits
61432480
Commit
61432480
authored
Mar 07, 2021
by
RuoYi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
删除多余的代码
parent
78deee06
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
11 deletions
+18
-11
ruoyi-common/src/main/java/com/ruoyi/common/core/text/Convert.java
...mon/src/main/java/com/ruoyi/common/core/text/Convert.java
+15
-6
ruoyi-ui/src/permission.js
ruoyi-ui/src/permission.js
+2
-4
ruoyi-ui/src/store/modules/user.js
ruoyi-ui/src/store/modules/user.js
+1
-1
No files found.
ruoyi-common/src/main/java/com/ruoyi/common/core/text/Convert.java
View file @
61432480
...
@@ -785,19 +785,28 @@ public class Convert
...
@@ -785,19 +785,28 @@ public class Convert
* @param charset 字符集
* @param charset 字符集
* @return 字符串
* @return 字符串
*/
*/
public
static
String
str
(
Object
obj
,
Charset
charset
)
{
public
static
String
str
(
Object
obj
,
Charset
charset
)
if
(
null
==
obj
)
{
{
if
(
null
==
obj
)
{
return
null
;
return
null
;
}
}
if
(
obj
instanceof
String
)
{
if
(
obj
instanceof
String
)
{
return
(
String
)
obj
;
return
(
String
)
obj
;
}
else
if
(
obj
instanceof
byte
[])
{
}
else
if
(
obj
instanceof
byte
[])
{
return
str
((
byte
[])
obj
,
charset
);
return
str
((
byte
[])
obj
,
charset
);
}
else
if
(
obj
instanceof
Byte
[])
{
}
else
if
(
obj
instanceof
Byte
[])
{
byte
[]
bytes
=
ArrayUtils
.
toPrimitive
((
Byte
[])
obj
);
byte
[]
bytes
=
ArrayUtils
.
toPrimitive
((
Byte
[])
obj
);
return
str
(
bytes
,
charset
);
return
str
(
bytes
,
charset
);
}
else
if
(
obj
instanceof
ByteBuffer
)
{
}
else
if
(
obj
instanceof
ByteBuffer
)
{
return
str
((
ByteBuffer
)
obj
,
charset
);
return
str
((
ByteBuffer
)
obj
,
charset
);
}
}
return
obj
.
toString
();
return
obj
.
toString
();
...
...
ruoyi-ui/src/permission.js
View file @
61432480
...
@@ -19,10 +19,8 @@ router.beforeEach((to, from, next) => {
...
@@ -19,10 +19,8 @@ router.beforeEach((to, from, next) => {
}
else
{
}
else
{
if
(
store
.
getters
.
roles
.
length
===
0
)
{
if
(
store
.
getters
.
roles
.
length
===
0
)
{
// 判断当前用户是否已拉取完user_info信息
// 判断当前用户是否已拉取完user_info信息
store
.
dispatch
(
'
GetInfo
'
).
then
(
res
=>
{
store
.
dispatch
(
'
GetInfo
'
).
then
(()
=>
{
// 拉取user_info
store
.
dispatch
(
'
GenerateRoutes
'
).
then
(
accessRoutes
=>
{
const
roles
=
res
.
roles
store
.
dispatch
(
'
GenerateRoutes
'
,
{
roles
}).
then
(
accessRoutes
=>
{
// 根据roles权限生成可访问的路由表
// 根据roles权限生成可访问的路由表
router
.
addRoutes
(
accessRoutes
)
// 动态添加可访问路由表
router
.
addRoutes
(
accessRoutes
)
// 动态添加可访问路由表
next
({
...
to
,
replace
:
true
})
// hack方法 确保addRoutes已完成
next
({
...
to
,
replace
:
true
})
// hack方法 确保addRoutes已完成
...
...
ruoyi-ui/src/store/modules/user.js
View file @
61432480
...
@@ -49,7 +49,7 @@ const user = {
...
@@ -49,7 +49,7 @@ const user = {
// 获取用户信息
// 获取用户信息
GetInfo
({
commit
,
state
})
{
GetInfo
({
commit
,
state
})
{
return
new
Promise
((
resolve
,
reject
)
=>
{
return
new
Promise
((
resolve
,
reject
)
=>
{
getInfo
(
state
.
token
).
then
(
res
=>
{
getInfo
().
then
(
res
=>
{
const
user
=
res
.
user
const
user
=
res
.
user
const
avatar
=
user
.
avatar
==
""
?
require
(
"
@/assets/images/profile.jpg
"
)
:
process
.
env
.
VUE_APP_BASE_API
+
user
.
avatar
;
const
avatar
=
user
.
avatar
==
""
?
require
(
"
@/assets/images/profile.jpg
"
)
:
process
.
env
.
VUE_APP_BASE_API
+
user
.
avatar
;
if
(
res
.
roles
&&
res
.
roles
.
length
>
0
)
{
// 验证返回的roles是否是一个非空数组
if
(
res
.
roles
&&
res
.
roles
.
length
>
0
)
{
// 验证返回的roles是否是一个非空数组
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment