Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fgqyxxlr
Overview
Overview
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
yaru
fgqyxxlr
Commits
d5014c75
Commit
d5014c75
authored
Jan 28, 2019
by
RuoYi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复全屏模式下,详情弹窗被遮盖
parent
a8b7ba00
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
ruoyi-admin/src/main/resources/static/ruoyi/js/ry-ui.js
+3
-1
No files found.
ruoyi-admin/src/main/resources/static/ruoyi/js/ry-ui.js
View file @
d5014c75
...
...
@@ -16,6 +16,7 @@
$
.
table
.
_params
=
$
.
common
.
isEmpty
(
options
.
queryParams
)
?
$
.
table
.
queryParams
:
options
.
queryParams
;
_sortOrder
=
$
.
common
.
isEmpty
(
options
.
sortOrder
)
?
"asc"
:
options
.
sortOrder
;
_sortName
=
$
.
common
.
isEmpty
(
options
.
sortName
)
?
""
:
options
.
sortName
;
_pageSize
=
$
.
common
.
isEmpty
(
options
.
pageSize
)
?
10
:
options
.
pageSize
;
_striped
=
$
.
common
.
isEmpty
(
options
.
striped
)
?
false
:
options
.
striped
;
_escape
=
$
.
common
.
isEmpty
(
options
.
escape
)
?
false
:
options
.
escape
;
_showFooter
=
$
.
common
.
isEmpty
(
options
.
showFooter
)
?
false
:
options
.
showFooter
;
...
...
@@ -35,7 +36,7 @@
sortOrder
:
_sortOrder
,
// 排序方式 asc 或者 desc
pagination
:
$
.
common
.
visible
(
options
.
pagination
),
// 是否显示分页(*)
pageNumber
:
1
,
// 初始化加载第一页,默认第一页
pageSize
:
10
,
// 每页的记录行数(*)
pageSize
:
_pageSize
,
// 每页的记录行数(*)
pageList
:
[
10
,
25
,
50
],
// 可供选择的每页的行数(*)
escape
:
_escape
,
// 转义HTML字符串
showFooter
:
_showFooter
,
// 是否显示表尾
...
...
@@ -563,6 +564,7 @@
shade
:
0.3
,
title
:
$
.
table
.
_option
.
modalName
+
"详细"
,
content
:
_url
,
zIndex
:
9999999999
,
btn
:
[
'关闭'
],
// 弹层外区域关闭
shadeClose
:
true
,
...
...
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