Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
熊鹏飞
/
xxljob220
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
c9b23f33
authored
Jul 19, 2019
by
xuxueli
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
UI优化,任务列表和日志列表数据表格宽度比例调整,避免数据换行提升体验;
parent
4dd19ac5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
9 deletions
doc/XXL-JOB官方文档.md
xxl-job-admin/src/main/resources/static/js/jobinfo.index.1.js
xxl-job-admin/src/main/resources/static/js/joblog.index.1.js
doc/XXL-JOB官方文档.md
View file @
c9b23f33
## 《分
布式任务调度平台XXL-JOB》
## 《分
布式任务调度平台XXL-JOB》
...
...
@@ -1521,6 +1521,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
-
10、注册监控线程优化,降低死锁几率;
-
11、调度组件优化:针对永远不会触发的Cron禁止配置和启动;任务Cron最后一次触发后再也不会触发时,比如一次性任务,主动停止相关任务;
-
12、任务列表交互优化,支持查看任务所属执行器的注册节点;
-
13、UI优化,任务列表和日志列表数据表格宽度比例调整,避免数据换行提升体验;
### TODO LIST
...
...
xxl-job-admin/src/main/resources/static/js/jobinfo.index.1.js
View file @
c9b23f33
...
...
@@ -28,7 +28,7 @@ $(function() {
"data"
:
'id'
,
"bSortable"
:
false
,
"visible"
:
true
,
"width"
:
'
10
%'
"width"
:
'
7
%'
},
{
"data"
:
'jobGroup'
,
...
...
@@ -65,7 +65,7 @@ $(function() {
{
"data"
:
'jobCron'
,
"visible"
:
true
,
"width"
:
'1
0
%'
"width"
:
'1
3
%'
},
{
"data"
:
'addTime'
,
...
...
xxl-job-admin/src/main/resources/static/js/joblog.index.1.js
View file @
c9b23f33
...
...
@@ -114,14 +114,14 @@ $(function() {
{
"data"
:
'jobGroup'
,
"visible"
:
false
},
{
"data"
:
'triggerTime'
,
"width"
:
'
16
%'
,
"width"
:
'
20
%'
,
"render"
:
function
(
data
,
type
,
row
)
{
return
data
?
moment
(
new
Date
(
data
)).
format
(
"YYYY-MM-DD HH:mm:ss"
):
""
;
}
},
{
"data"
:
'triggerCode'
,
"width"
:
'1
2
%'
,
"width"
:
'1
0
%'
,
"render"
:
function
(
data
,
type
,
row
)
{
var
html
=
data
;
if
(
data
==
200
)
{
...
...
@@ -136,21 +136,21 @@ $(function() {
},
{
"data"
:
'triggerMsg'
,
"width"
:
'1
2
%'
,
"width"
:
'1
0
%'
,
"render"
:
function
(
data
,
type
,
row
)
{
return
data
?
'<a class="logTips" href="javascript:;" >'
+
I18n
.
system_show
+
'<span style="display:none;">'
+
data
+
'</span></a>'
:
I18n
.
system_empty
;
}
},
{
"data"
:
'handleTime'
,
"width"
:
'
16
%'
,
"width"
:
'
20
%'
,
"render"
:
function
(
data
,
type
,
row
)
{
return
data
?
moment
(
new
Date
(
data
)).
format
(
"YYYY-MM-DD HH:mm:ss"
):
""
;
}
},
{
"data"
:
'handleCode'
,
"width"
:
'1
2
%'
,
"width"
:
'1
0
%'
,
"render"
:
function
(
data
,
type
,
row
)
{
var
html
=
data
;
if
(
data
==
200
)
{
...
...
@@ -167,7 +167,7 @@ $(function() {
},
{
"data"
:
'handleMsg'
,
"width"
:
'1
2
%'
,
"width"
:
'1
0
%'
,
"render"
:
function
(
data
,
type
,
row
)
{
return
data
?
'<a class="logTips" href="javascript:;" >'
+
I18n
.
system_show
+
'<span style="display:none;">'
+
data
+
'</span></a>'
:
I18n
.
system_empty
;
}
...
...
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