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
8f2b3ac4
Commit
8f2b3ac4
authored
Nov 15, 2022
by
若依
Committed by
Gitee
Nov 15, 2022
Browse files
Options
Browse Files
Download
Plain Diff
!611 修复调度日志点击多次数据不变化的问题
Merge pull request !611 from 也曾为你像超人/N/A
parents
7eee3b9f
101e15d8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
ruoyi-ui/src/router/index.js
ruoyi-ui/src/router/index.js
+1
-1
ruoyi-ui/src/views/monitor/job/index.vue
ruoyi-ui/src/views/monitor/job/index.vue
+1
-1
ruoyi-ui/src/views/monitor/job/log.vue
ruoyi-ui/src/views/monitor/job/log.vue
+1
-1
No files found.
ruoyi-ui/src/router/index.js
View file @
8f2b3ac4
...
@@ -141,7 +141,7 @@ export const dynamicRoutes = [
...
@@ -141,7 +141,7 @@ export const dynamicRoutes = [
permissions
:
[
'
monitor:job:list
'
],
permissions
:
[
'
monitor:job:list
'
],
children
:
[
children
:
[
{
{
path
:
'
index
'
,
path
:
'
index
/:jobId(
\\
d+)
'
,
component
:
()
=>
import
(
'
@/views/monitor/job/log
'
),
component
:
()
=>
import
(
'
@/views/monitor/job/log
'
),
name
:
'
JobLog
'
,
name
:
'
JobLog
'
,
meta
:
{
title
:
'
调度日志
'
,
activeMenu
:
'
/monitor/job
'
}
meta
:
{
title
:
'
调度日志
'
,
activeMenu
:
'
/monitor/job
'
}
...
...
ruoyi-ui/src/views/monitor/job/index.vue
View file @
8f2b3ac4
...
@@ -454,7 +454,7 @@ export default {
...
@@ -454,7 +454,7 @@ export default {
/** 任务日志列表查询 */
/** 任务日志列表查询 */
handleJobLog
(
row
)
{
handleJobLog
(
row
)
{
const
jobId
=
row
.
jobId
||
0
;
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
()
{
handleAdd
()
{
...
...
ruoyi-ui/src/views/monitor/job/log.vue
View file @
8f2b3ac4
...
@@ -217,7 +217,7 @@ export default {
...
@@ -217,7 +217,7 @@ export default {
};
};
},
},
created
()
{
created
()
{
const
jobId
=
this
.
$route
.
query
.
jobId
;
const
jobId
=
this
.
$route
.
params
&&
this
.
$route
.
params
.
jobId
;
if
(
jobId
!==
undefined
&&
jobId
!=
0
)
{
if
(
jobId
!==
undefined
&&
jobId
!=
0
)
{
getJob
(
jobId
).
then
(
response
=>
{
getJob
(
jobId
).
then
(
response
=>
{
this
.
queryParams
.
jobName
=
response
.
data
.
jobName
;
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