Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
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
ops
jumpserver
Commits
8dba54e7
Commit
8dba54e7
authored
Nov 14, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 优化table页数
parent
2ef487a9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
10 deletions
+23
-10
_asset_list_modal.html
apps/assets/templates/assets/_asset_list_modal.html
+2
-1
asset_list.html
apps/assets/templates/assets/asset_list.html
+8
-8
jumpserver.js
apps/static/js/jumpserver.js
+13
-1
No files found.
apps/assets/templates/assets/_asset_list_modal.html
View file @
8dba54e7
...
@@ -135,7 +135,8 @@ function initAssetModalTable() {
...
@@ -135,7 +135,8 @@ function initAssetModalTable() {
],
],
lengthMenu
:
[[
10
,
25
,
50
],
[
10
,
25
,
50
]],
lengthMenu
:
[[
10
,
25
,
50
],
[
10
,
25
,
50
]],
pageLength
:
10
,
pageLength
:
10
,
select_style
:
assetModalOption
.
selectStyle
select_style
:
assetModalOption
.
selectStyle
,
paging_numbers_length
:
3
};
};
assetModalTable
=
jumpserver
.
initServerSideDataTable
(
options
);
assetModalTable
=
jumpserver
.
initServerSideDataTable
(
options
);
if
(
assetModalOption
.
onModalTableDone
)
{
if
(
assetModalOption
.
onModalTableDone
)
{
...
...
apps/assets/templates/assets/asset_list.html
View file @
8dba54e7
...
@@ -386,6 +386,10 @@ $(document).ready(function(){
...
@@ -386,6 +386,10 @@ $(document).ready(function(){
setTimeout
(
function
()
{
window
.
location
.
reload
();},
300
);
setTimeout
(
function
()
{
window
.
location
.
reload
();},
300
);
}
}
function
reloadTable
()
{
asset_table
.
ajax
.
reload
();
}
function
doDeactive
()
{
function
doDeactive
()
{
var
data
=
[];
var
data
=
[];
$
.
each
(
id_list
,
function
(
index
,
object_id
)
{
$
.
each
(
id_list
,
function
(
index
,
object_id
)
{
...
@@ -396,7 +400,7 @@ $(document).ready(function(){
...
@@ -396,7 +400,7 @@ $(document).ready(function(){
url
:
the_url
,
url
:
the_url
,
method
:
'PATCH'
,
method
:
'PATCH'
,
body
:
JSON
.
stringify
(
data
),
body
:
JSON
.
stringify
(
data
),
success
:
re
freshPag
e
success
:
re
loadTabl
e
});
});
}
}
function
doActive
()
{
function
doActive
()
{
...
@@ -409,7 +413,7 @@ $(document).ready(function(){
...
@@ -409,7 +413,7 @@ $(document).ready(function(){
url
:
the_url
,
url
:
the_url
,
method
:
'PATCH'
,
method
:
'PATCH'
,
body
:
JSON
.
stringify
(
data
),
body
:
JSON
.
stringify
(
data
),
success
:
re
freshPag
e
success
:
re
loadTabl
e
});
});
}
}
function
doDelete
()
{
function
doDelete
()
{
...
@@ -431,7 +435,7 @@ $(document).ready(function(){
...
@@ -431,7 +435,7 @@ $(document).ready(function(){
success
:
function
()
{
success
:
function
()
{
var
msg
=
"{% trans 'Asset Deleted.' %}"
;
var
msg
=
"{% trans 'Asset Deleted.' %}"
;
swal
(
"{% trans 'Asset Delete' %}"
,
msg
,
"success"
);
swal
(
"{% trans 'Asset Delete' %}"
,
msg
,
"success"
);
re
freshPag
e
();
re
loadTabl
e
();
},
},
flash_message
:
false
,
flash_message
:
false
,
});
});
...
@@ -478,16 +482,12 @@ $(document).ready(function(){
...
@@ -478,16 +482,12 @@ $(document).ready(function(){
'assets'
:
id_list
'assets'
:
id_list
};
};
var
success
=
function
()
{
asset_table
.
ajax
.
reload
()
};
var
url
=
"{% url 'api-assets:node-remove-assets' pk=DEFAULT_PK %}"
.
replace
(
"{{ DEFAULT_PK }}"
,
current_node_id
);
var
url
=
"{% url 'api-assets:node-remove-assets' pk=DEFAULT_PK %}"
.
replace
(
"{{ DEFAULT_PK }}"
,
current_node_id
);
requestApi
({
requestApi
({
'url'
:
url
,
'url'
:
url
,
'method'
:
'PUT'
,
'method'
:
'PUT'
,
'body'
:
JSON
.
stringify
(
data
),
'body'
:
JSON
.
stringify
(
data
),
'success'
:
success
'success'
:
reloadTable
})
})
}
}
...
...
apps/static/js/jumpserver.js
View file @
8dba54e7
...
@@ -480,6 +480,11 @@ jumpserver.language = {
...
@@ -480,6 +480,11 @@ jumpserver.language = {
last
:
"»"
last
:
"»"
}
}
};
};
function
setDataTablePagerLength
(
num
)
{
$
.
fn
.
DataTable
.
ext
.
pager
.
numbers_length
=
num
;
}
jumpserver
.
initDataTable
=
function
(
options
)
{
jumpserver
.
initDataTable
=
function
(
options
)
{
// options = {
// options = {
// ele *: $('#dataTable_id'),
// ele *: $('#dataTable_id'),
...
@@ -494,6 +499,7 @@ jumpserver.initDataTable = function (options) {
...
@@ -494,6 +499,7 @@ jumpserver.initDataTable = function (options) {
// op_html: 'div.btn-group?',
// op_html: 'div.btn-group?',
// paging: true
// paging: true
// }
// }
setDataTablePagerLength
(
5
);
var
ele
=
options
.
ele
||
$
(
'.dataTable'
);
var
ele
=
options
.
ele
||
$
(
'.dataTable'
);
var
columnDefs
=
[
var
columnDefs
=
[
{
{
...
@@ -590,8 +596,14 @@ jumpserver.initServerSideDataTable = function (options) {
...
@@ -590,8 +596,14 @@ jumpserver.initServerSideDataTable = function (options) {
// columnDefs: [{target: 0, createdCell: ()=>{}}, ...],
// columnDefs: [{target: 0, createdCell: ()=>{}}, ...],
// uc_html: '<a>header button</a>',
// uc_html: '<a>header button</a>',
// op_html: 'div.btn-group?',
// op_html: 'div.btn-group?',
// paging: true
// paging: true,
// paging_numbers_length: 5;
// }
// }
var
pagingNumbersLength
=
5
;
if
(
options
.
paging_numbers_length
){
pagingNumbersLength
=
options
.
paging_numbers_length
;
}
setDataTablePagerLength
(
pagingNumbersLength
);
var
ele
=
options
.
ele
||
$
(
'.dataTable'
);
var
ele
=
options
.
ele
||
$
(
'.dataTable'
);
var
columnDefs
=
[
var
columnDefs
=
[
{
{
...
...
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