Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
doc_wei
Skyeye
提交
a28410c8
S
Skyeye
项目概览
doc_wei
/
Skyeye
通知
1197
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看板
提交
a28410c8
编写于
11月 08, 2018
作者:
doc_wei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
小程序添加删除选项
上级
c4dfeab9
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
40 addition
and
6 deletion
+40
-6
skyeye-web/src/main/webapp/assets/lib/winui/css/winui.css
skyeye-web/src/main/webapp/assets/lib/winui/css/winui.css
+19
-3
skyeye-web/src/main/webapp/js/rmmysmpropage/mysmpropagelist.js
...e-web/src/main/webapp/js/rmmysmpropage/mysmpropagelist.js
+21
-3
未找到文件。
skyeye-web/src/main/webapp/assets/lib/winui/css/winui.css
浏览文件 @
a28410c8
...
...
@@ -2659,11 +2659,27 @@ body .layer-ext-winconfirm {
height
:
calc
(
100vh
-
25px
);
width
:
100%
;
margin
:
0
auto
;
border
:
2px
solid
rgba
(
0
,
0
,
0
,
0.9
)
;
border
:
2px
solid
gainsboro
;
border-radius
:
3px
;
}
.iphone-screen
>
.check-item
:HOVER
{
border
:
1px
black
solid
;
.iphone-screen
.check-item
:HOVER
{
border
:
1px
#357ebd
dashed
;
}
.check-item-shoose
{
border
:
1px
#d9534f
dashed
;
}
.check-item-operation
{
text-align
:
right
;
width
:
100%
;
position
:
absolute
;
}
.check-item-operation
button
{
width
:
25px
;
height
:
25px
;
color
:
#fff
;
background-color
:
#337ab7
;
border-color
:
#2e6da4
;
margin-left
:
2px
;
}
.iphone-screen
img
{
width
:
100%
;
...
...
skyeye-web/src/main/webapp/js/rmmysmpropage/mysmpropagelist.js
浏览文件 @
a28410c8
...
...
@@ -66,10 +66,15 @@ layui.config({
}
}).
on
(
'
drop
'
,
function
(
el
,
container
)
{
//放置
if
(
$
(
container
).
attr
(
"
id
"
)
==
'
centerText
'
){
//放置在手机里面
el
.
className
=
'
layui-col-md12 check-item
'
;
var
content
=
$
(
el
).
attr
(
"
htmlContent
"
);
el
.
className
=
'
layui-col-md12
'
;
var
content
=
'
<div class="layui-col-md12 check-item">
'
+
$
(
el
).
attr
(
"
htmlContent
"
)
+
'
</div>
'
;
//内容
var
operationContent
=
'
<div class="check-item-operation btn-group btn-group-xs btn-base">
'
+
'
<button type="button" class="btn btn-primary" rel="editHandler" title="编辑"><i class="fa fa-edit"></i></button>
'
+
'
<button type="button" class="btn btn-danger" rel="removeHandler" title="删除"><i class="fa fa-trash"></i></button>
'
+
'
</div>
'
;
var
JsContent
=
'
<script>layui.define(["jquery"], function(exports) {var jQuery = layui.jquery;(function($) {
'
+
$
(
el
).
attr
(
"
htmlJsContent
"
)
+
'
})(jQuery);});</script>
'
$
(
el
).
html
(
content
+
JsContent
);
$
(
el
).
html
(
content
+
operationContent
+
JsContent
);
$
(
el
).
find
(
"
.check-item-operation
"
).
hide
();
}
});
...
...
@@ -177,6 +182,19 @@ layui.config({
});
});
//页面内组件选中组件项
$
(
'
body
'
).
on
(
'
click
'
,
'
.check-item
'
,
function
(){
$
(
"
.check-item
"
).
removeClass
(
"
check-item-shoose
"
);
//移除之前被选中的组件
$
(
"
.check-item
"
).
parent
().
find
(
"
.check-item-operation
"
).
hide
();
//隐藏之前选中的组件的操作
$
(
this
).
addClass
(
"
check-item-shoose
"
);
//给当前组件添加选中样式
$
(
this
).
parent
().
find
(
"
.check-item-operation
"
).
show
();
//显示当前选中的组件的操作
});
//页面内组件移除按钮
$
(
'
body
'
).
on
(
'
click
'
,
'
button[rel="removeHandler"]
'
,
function
(){
$
(
this
).
parent
().
parent
().
remove
();
})
function
loadTable
(){
table
.
reload
(
"
messageTable
"
,
{
where
:{
proName
:
$
(
"
#proName
"
).
val
()}});
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录