合肥金麓客户积分系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

133 lines
6.0 KiB

{include file="common/head"/}
<div class="admin-main layui-anim layui-anim-upbit">
<fieldset class="layui-elem-field layui-field-title">
<legend>{:lang('ad')}管理</legend>
</fieldset>
<div class="demoTable">
<div class="layui-inline">
<input class="layui-input" name="key" id="key" placeholder="{:lang('pleaseEnter')}关键字">
</div>
<button class="layui-btn" id="search" data-type="reload">{:lang('search')}</button>
<a href="{:url('index')}" class="layui-btn">显示全部</a>
<button type="button" class="layui-btn layui-btn-danger" id="delAll">批量删除</button>
<a href="{:url('add')}" class="layui-btn" style="float:right;"><i class="fa fa-plus" aria-hidden="true"></i>{:lang('add')}{:lang('ad')}</a>
<div style="clear: both;"></div>
</div>
<table class="layui-table" id="list" lay-filter="list"></table>
</div>
{include file="common/foot"/}
<script type="text/html" id="title">
{{d.title}}{{# if(d.pic){ }}<img src="/static/admin/images/image.gif" onmouseover="layer.tips('<img src={{d.pic}}>',this,{tips: [1, '#fff']});" onmouseout="layer.closeAll();">{{# } }}
</script>
<script type="text/html" id="order">
<input name="{{d.id}}" data-id="{{d.id}}" class="list_order layui-input" value=" {{d.sort}}" size="10"/>
</script>
<script type="text/html" id="open">
<input type="checkbox" name="open" value="{{d.id}}" lay-skin="switch" lay-text="开启|关闭" lay-filter="open" {{ d.open == 1 ? 'checked' : '' }}>
</script>
<script type="text/html" id="action">
<a href="{:url('edit')}?id={{d.id}}" class="layui-btn layui-btn-xs">编辑</a>
<a class="layui-btn layui-btn-danger layui-btn-xs" lay-event="del">删除</a>
</script>
<script>
layui.use(['table','form'], function() {
var table = layui.table,form = layui.form,$ = layui.jquery;
var tableIn = table.render({
id: 'ad',
elem: '#list',
url: '{:url("index")}',
method: 'post',
page:true,
cols: [[
{checkbox: true, fixed: true},
{field: 'id', title: '{:lang("id")}', width: 80, fixed: true},
{field: 'title', title: '广告名称', width: 400,templet: '#title'},
{field: 'typename', title: '所属位置', width: 160},
{field: 'addtime', title: '{:lang("add")}{:lang("time")}',width: 150},
{field: 'sort', align: 'center', title: '{:lang("order")}', width: 120, templet: '#order'},
{field: 'open', align: 'center', title: '{:lang("status")}', width: 100, toolbar: '#open'},
{width: 160, align: 'center', toolbar: '#action'}
]],
limit:10
});
form.on('switch(open)', function(obj){
loading =layer.load(1, {shade: [0.1,'#fff']});
var id = this.value;
var open = obj.elem.checked===true?1:0;
$.post('{:url("editState")}',{'id':id,'open':open},function (res) {
layer.close(loading);
if (res.status==1) {
tableIn.reload();
}else{
layer.msg(res.msg,{time:1000,icon:2});
return false;
}
})
});
//搜索
$('#search').on('click', function () {
var key = $('#key').val();
if ($.trim(key) === '') {
layer.msg('{:lang("pleaseEnter")}关键字!', {icon: 0});
return;
}
tableIn.reload({ page: {page: 1}, where: {key: key}});
});
table.on('tool(list)', function(obj) {
var data = obj.data;
if (obj.event === 'del'){
layer.confirm('您确定要删除该广告吗?', function(index){
var loading = layer.load(1, {shade: [0.1, '#fff']});
$.post("{:url('del')}",{id:data.id},function(res){
layer.close(loading);
if(res.code===1){
layer.msg(res.msg,{time:1000,icon:1});
tableIn.reload();
}else{
layer.msg('操作失败!',{time:1000,icon:2});
}
});
layer.close(index);
});
}
});
$('body').on('blur','.list_order',function() {
var id = $(this).attr('data-id');
var sort = $(this).val();
var loading = layer.load(1, {shade: [0.1, '#fff']});
$.post('{:url("adOrder")}',{id:id,sort:sort},function(res){
layer.close(loading);
if(res.code === 1){
layer.msg(res.msg, {time: 1000, icon: 1});
tableIn.reload();
}else{
layer.msg(res.msg,{time:1000,icon:2});
}
})
});
$('#delAll').click(function(){
layer.confirm('确认要删除选中的广告吗?', {icon: 3}, function(index) {
layer.close(index);
var checkStatus = table.checkStatus('ad'); //test即为参数id设定的值
var ids = [];
$(checkStatus.data).each(function (i, o) {
ids.push(o.id);
});
if(ids==''){
layer.msg('请选择要删除的数据!', {time: 1000, icon: 2});
return false;
}
var loading = layer.load(1, {shade: [0.1, '#fff']});
$.post("{:url('delall')}", {ids: ids}, function (data) {
layer.close(loading);
if (data.code === 1) {
layer.msg(data.msg, {time: 1000, icon: 1});
tableIn.reload();
} else {
layer.msg(data.msg, {time: 1000, icon: 2});
}
});
});
})
})
</script>