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
dccb3ac6
Commit
dccb3ac6
authored
Jan 18, 2022
by
RuoYi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复选项卡点击右键刷新丢失参数问题
parent
89cd2106
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
ruoyi-framework/src/main/java/com/ruoyi/framework/config/ThreadPoolConfig.java
...ain/java/com/ruoyi/framework/config/ThreadPoolConfig.java
+0
-1
ruoyi-ui/src/plugins/tab.js
ruoyi-ui/src/plugins/tab.js
+5
-4
No files found.
ruoyi-framework/src/main/java/com/ruoyi/framework/config/ThreadPoolConfig.java
View file @
dccb3ac6
...
...
@@ -5,7 +5,6 @@ import org.apache.commons.lang3.concurrent.BasicThreadFactory;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor
;
import
java.util.concurrent.ScheduledExecutorService
;
import
java.util.concurrent.ScheduledThreadPoolExecutor
;
import
java.util.concurrent.ThreadPoolExecutor
;
...
...
ruoyi-ui/src/plugins/tab.js
View file @
dccb3ac6
...
...
@@ -4,20 +4,21 @@ import router from '@/router';
export
default
{
// 刷新当前tab页签
refreshPage
(
obj
)
{
const
{
path
,
matched
}
=
router
.
currentRoute
;
const
{
path
,
query
,
matched
}
=
router
.
currentRoute
;
if
(
obj
===
undefined
)
{
matched
.
forEach
((
m
)
=>
{
if
(
m
.
components
&&
m
.
components
.
default
&&
m
.
components
.
default
.
name
)
{
if
(
!
[
'
Layout
'
,
'
ParentView
'
].
includes
(
m
.
components
.
default
.
name
))
{
obj
=
{
name
:
m
.
components
.
default
.
name
,
path
:
path
};
obj
=
{
name
:
m
.
components
.
default
.
name
,
path
:
path
,
query
:
query
};
}
}
});
}
return
store
.
dispatch
(
'
tagsView/delCachedView
'
,
obj
).
then
(()
=>
{
const
{
path
}
=
obj
const
{
path
,
query
}
=
obj
router
.
replace
({
path
:
'
/redirect
'
+
path
path
:
'
/redirect
'
+
path
,
query
:
query
})
})
},
...
...
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