2.4发版前更新
前端分离出来 工具列表新增版本控制
This commit is contained in:
96
html/admin/magbox/magic.html
Normal file
96
html/admin/magbox/magic.html
Normal file
@@ -0,0 +1,96 @@
|
||||
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>魔改列表设置</title>
|
||||
</head>
|
||||
<link rel="stylesheet" href="/static/layui/css/layui.css">
|
||||
<script src="/static/layui/layui.all.js"></script>
|
||||
<script src="/static/layui/layui.js"></script>
|
||||
<script src="/static/js/jquery-3.2.1.js"></script>
|
||||
<script src="/static/js/user.js"></script>
|
||||
<body>
|
||||
<input id="add" type="button" data-type="reload" value="新增" class="layui-btn"" />
|
||||
<table id="banner" lay-filter="banner"></table>
|
||||
</body>
|
||||
<script type="text/html" id="bar">
|
||||
<a class="layui-btn layui-btn-xs" lay-event="config">修改</a>
|
||||
</script>
|
||||
<script>
|
||||
layui.use('table', function() {
|
||||
var table = layui.table;
|
||||
table.render({
|
||||
elem: '#banner',
|
||||
height: 312,
|
||||
url: '/android/config/mg.do?all=true',
|
||||
page: false,
|
||||
response: {
|
||||
statusCode: 100
|
||||
},
|
||||
cols: [
|
||||
[{
|
||||
field: 'id',
|
||||
title: 'id',
|
||||
width: 80,
|
||||
sort: true,
|
||||
fixed: 'left'
|
||||
}, {
|
||||
field: 'indexs',
|
||||
title: '顺位',
|
||||
width: 80,
|
||||
sort: true,
|
||||
}, {
|
||||
field: 'name',
|
||||
title: '标题',
|
||||
width: 80,
|
||||
},{
|
||||
field:'mgType',
|
||||
title:'配置代码',
|
||||
width:100
|
||||
},{
|
||||
field: 'icon',
|
||||
title: '图像地址',
|
||||
width: 300,
|
||||
},
|
||||
{
|
||||
field: 'isshow',
|
||||
title: '是否显示',
|
||||
width: 120,
|
||||
}, {
|
||||
fixed: 'right',
|
||||
width: 80,
|
||||
align: 'center',
|
||||
toolbar: '#bar'
|
||||
}
|
||||
]
|
||||
]
|
||||
})
|
||||
table.on('tool(banner)', function(obj) {
|
||||
var data = obj.data;
|
||||
if (obj.event === 'config') {
|
||||
layer.prompt(function(value, index, elem) {
|
||||
layer.close(index);
|
||||
layer.msg(value)
|
||||
active['reload'](this)
|
||||
});
|
||||
}
|
||||
})
|
||||
var $ = layui.$,
|
||||
active = {
|
||||
reload: function() {
|
||||
//执行重载
|
||||
table.reload('banner', {
|
||||
page: {
|
||||
curr: 1 //重新从第 1 页开始
|
||||
},
|
||||
where: {
|
||||
type: $('#searchType').val(),
|
||||
key: $('#searchKey').val()
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
})
|
||||
</script>
|
||||
</html>
|
||||
Reference in New Issue
Block a user