Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
doc_wei
Skyeye
提交
ec3fc675
S
Skyeye
项目概览
doc_wei
/
Skyeye
通知
1172
Star
154
Fork
127
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Skyeye
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
ec3fc675
编写于
11月 29, 2018
作者:
doc_wei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
更新
上级
97b18476
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
33 addition
and
52 deletion
+33
-52
skyeye-web/src/main/webapp/assets/lib/layui/custom.js
skyeye-web/src/main/webapp/assets/lib/layui/custom.js
+17
-43
skyeye-web/src/main/webapp/assets/lib/winui/js/winui.window.js
...e-web/src/main/webapp/assets/lib/winui/js/winui.window.js
+16
-8
skyeye-web/src/main/webapp/js/syspersonal/syspersonal.js
skyeye-web/src/main/webapp/js/syspersonal/syspersonal.js
+0
-1
未找到文件。
skyeye-web/src/main/webapp/assets/lib/layui/custom.js
浏览文件 @
ec3fc675
...
...
@@ -38,9 +38,6 @@ function _openNewWindows(mation){
if
(
isNull
(
mation
.
maxmin
)){
//是否最大化
mation
.
maxmin
=
false
;
}
if
(
isNull
(
mation
.
zIndex
)){
//是否在桌面打开
mation
.
zIndex
=
false
;
}
if
(
isNull
(
mation
.
shade
)){
//遮罩层
mation
.
shade
=
0.5
;
}
...
...
@@ -52,47 +49,24 @@ function _openNewWindows(mation){
async
:
true
,
success
:
function
(
data
)
{
layer
.
close
(
index
);
var
pageIndex
;
//从桌面打开
if
(
mation
.
zIndex
){
pageIndex
=
top
.
winui
.
window
.
open
({
id
:
mation
.
pageId
,
type
:
2
,
title
:
mation
.
title
,
content
:
mation
.
url
,
area
:
mation
.
area
,
offset
:
mation
.
offset
,
maxmin
:
mation
.
maxmin
,
shade
:
mation
.
shade
,
end
:
function
(){
if
(
typeof
(
mation
.
callBack
)
==
"
function
"
)
{
mation
.
callBack
(
refreshCode
);
}
}
});
}
else
{
pageIndex
=
layer
.
open
({
id
:
mation
.
pageId
,
type
:
2
,
title
:
mation
.
title
,
content
:
mation
.
url
,
area
:
mation
.
area
,
offset
:
mation
.
offset
,
maxmin
:
mation
.
maxmin
,
shade
:
mation
.
shade
,
end
:
function
(){
if
(
typeof
(
mation
.
callBack
)
==
"
function
"
)
{
mation
.
callBack
(
refreshCode
);
}
}
});
}
var
pageIndex
=
layer
.
open
({
id
:
mation
.
pageId
,
type
:
2
,
title
:
mation
.
title
,
content
:
mation
.
url
,
area
:
mation
.
area
,
offset
:
mation
.
offset
,
maxmin
:
mation
.
maxmin
,
shade
:
mation
.
shade
,
zIndex
:
20000000000
,
end
:
function
(){
if
(
typeof
(
mation
.
callBack
)
==
"
function
"
)
{
mation
.
callBack
(
refreshCode
);
}
}
});
if
(
mation
.
maxmin
){
if
(
mation
.
zIndex
){
top
.
winui
.
window
.
full
(
pageIndex
);
}
else
{
layer
.
full
(
pageIndex
);
}
layer
.
full
(
pageIndex
);
}
},
error
:
function
(
xml
)
{
...
...
skyeye-web/src/main/webapp/assets/lib/winui/js/winui.window.js
浏览文件 @
ec3fc675
...
...
@@ -57,6 +57,12 @@ layui.define(['layer', 'winui'], function (exports) {
if
(
isNull
(
options
.
maxmin
)
&&
options
.
maxmin
!=
false
){
options
.
maxmin
=
true
;
}
if
(
isNull
(
options
.
zIndex
)){
options
.
zIndex
=
layer
.
zIndex
;
}
if
(
isNull
(
options
.
addToButtomMenu
)
&&
options
.
addToButtomMenu
!=
false
){
options
.
addToButtomMenu
=
true
;
}
//打开窗口
var
windowIndex
=
layer
.
open
({
...
...
@@ -72,7 +78,7 @@ layui.define(['layer', 'winui'], function (exports) {
maxmin
:
options
.
maxmin
,
//允许最大最小化
moveOut
:
true
,
//允许拖出窗外
skin
:
options
.
skin
,
//窗口皮肤
zIndex
:
layer
.
zIndex
,
zIndex
:
options
.
zIndex
,
shadeClose
:
options
.
shadeClose
,
//点击空白处关闭
scrollbar
:
false
,
closeBtn
:
options
.
closeBtn
,
...
...
@@ -82,7 +88,7 @@ layui.define(['layer', 'winui'], function (exports) {
},
//打开回调
success
:
function
(
layero
,
index
)
{
common
.
setWindowBody
(
layero
);
common
.
setWindowBody
(
layero
);
},
//关闭回调
cancel
:
function
(
index
,
windowDom
)
{
...
...
@@ -201,12 +207,14 @@ layui.define(['layer', 'winui'], function (exports) {
//去除最大化按钮
if
(
!
(
options
.
max
===
undefined
?
this
.
settings
.
max
:
options
.
max
))
$
(
windowDom
).
find
(
'
.layui-layer-max
'
).
remove
();
//增加任务项
var
taskItem
=
common
.
addTaskItem
(
options
.
id
,
options
.
title
);
//选中任务项
common
.
selectDom
(
taskItem
);
//绑定任务项mouseup事件
common
.
resetMouseUp
(
taskItem
,
call
.
taskItemMouseUp
);
if
(
options
.
addToButtomMenu
){
//增加任务项
var
taskItem
=
common
.
addTaskItem
(
options
.
id
,
options
.
title
);
//选中任务项
common
.
selectDom
(
taskItem
);
//绑定任务项mouseup事件
common
.
resetMouseUp
(
taskItem
,
call
.
taskItemMouseUp
);
}
//双击窗口标题栏最大化(由于不明原因,标题栏的拖动好像阻碍了标题栏的双击事件,所以这里用mousedown模拟双击)
var
lastTime
=
0
;
$
(
windowDom
).
find
(
MOVE
).
on
(
'
mousedown
'
,
function
()
{
...
...
skyeye-web/src/main/webapp/js/syspersonal/syspersonal.js
浏览文件 @
ec3fc675
...
...
@@ -16,7 +16,6 @@ layui.config({
url
:
"
../../tpl/syspersonal/editpassword.html
"
,
title
:
"
修改密码
"
,
pageId
:
"
editpassword
"
,
zIndex
:
true
,
area
:
[
'
700px
'
,
'
300px
'
],
callBack
:
function
(
refreshCode
){
if
(
refreshCode
==
'
0
'
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录