Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
sts网站
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liyang
sts网站
Commits
101e15d8
Unverified
Commit
101e15d8
authored
Oct 31, 2022
by
也曾为你像超人
Committed by
Gitee
Oct 31, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复调度日志点击多次数据不变化的问题
Signed-off-by:
也曾为你像超人
<
1553592282@qq.com
>
parent
ebb9f15a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
index.js
ruoyi-ui/src/router/index.js
+1
-1
index.vue
ruoyi-ui/src/views/monitor/job/index.vue
+1
-1
log.vue
ruoyi-ui/src/views/monitor/job/log.vue
+1
-1
No files found.
ruoyi-ui/src/router/index.js
View file @
101e15d8
...
...
@@ -141,7 +141,7 @@ export const dynamicRoutes = [
permissions
:
[
'monitor:job:list'
],
children
:
[
{
path
:
'index'
,
path
:
'index
/:jobId(
\\
d+)
'
,
component
:
()
=>
import
(
'@/views/monitor/job/log'
),
name
:
'JobLog'
,
meta
:
{
title
:
'调度日志'
,
activeMenu
:
'/monitor/job'
}
...
...
ruoyi-ui/src/views/monitor/job/index.vue
View file @
101e15d8
...
...
@@ -454,7 +454,7 @@ export default {
/** 任务日志列表查询 */
handleJobLog
(
row
)
{
const
jobId
=
row
.
jobId
||
0
;
this
.
$router
.
push
(
{
path
:
'/monitor/job-log/index'
,
query
:
{
jobId
:
jobId
}
}
)
this
.
$router
.
push
(
'/monitor/job-log/index/'
+
jobId
)
},
/** 新增按钮操作 */
handleAdd
()
{
...
...
ruoyi-ui/src/views/monitor/job/log.vue
View file @
101e15d8
...
...
@@ -217,7 +217,7 @@ export default {
};
},
created
()
{
const
jobId
=
this
.
$route
.
query
.
jobId
;
const
jobId
=
this
.
$route
.
params
&&
this
.
$route
.
params
.
jobId
;
if
(
jobId
!==
undefined
&&
jobId
!=
0
)
{
getJob
(
jobId
).
then
(
response
=>
{
this
.
queryParams
.
jobName
=
response
.
data
.
jobName
;
...
...
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