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.
111 lines
4.9 KiB
111 lines
4.9 KiB
{include file="common/head"/}
|
|
<div class="admin-main layui-anim layui-anim-upbit">
|
|
<fieldset class="layui-elem-field layui-field-title">
|
|
<legend>友情链接</legend>
|
|
</fieldset>
|
|
<blockquote class="layui-elem-quote">
|
|
<a href="{:url('add')}" class="layui-btn layui-btn-sm">{:lang('add')}友链</a>
|
|
<button type="button" class="layui-btn layui-btn-sm layui-btn-danger" id="delAll">批量删除</button>
|
|
</blockquote>
|
|
<table class="layui-table" id="list" lay-filter="list"></table>
|
|
</div>
|
|
{include file="common/foot"/}
|
|
<script type="text/html" id="url">
|
|
<a href="{{d.url}}" target="_blank">{{d.url}}</a>
|
|
</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: 'link',
|
|
elem: '#list',
|
|
url: '{:url("index")}',
|
|
method: 'post',
|
|
cols: [[
|
|
{checkbox: true, fixed: true},
|
|
{field: 'id', title: '{:lang("id")}', width: 80, fixed: true, sort: true},
|
|
{field: 'title', title: '链接名称', width: 200},
|
|
{field: 'url', title: '链接URL', width: 300,templet:'#url'},
|
|
{field: 'qq', title: '{:lang("qq")}', width: 120},
|
|
{field: 'addtime', title: '{:lang("add")}{:lang("time")}', width: 150,sort: true},
|
|
{field: 'sort',align: 'center',title: '{:lang("order")}', width: 120, templet: '#order', sort: true},
|
|
{field: 'open',align: 'center', title: '{:lang("status")}', width: 100, sort: true,toolbar: '#open'},
|
|
{width: 160, align: 'center', toolbar: '#action'}
|
|
]]
|
|
});
|
|
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("linkState")}',{'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;
|
|
}
|
|
})
|
|
});
|
|
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});
|
|
obj.del();
|
|
}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();
|
|
$.post('{:url("listOrder")}',{id:id,sort:sort},function(res){
|
|
if(res.code === 1){
|
|
layer.msg(res.msg, {time: 1000, icon: 1});
|
|
table.reload('link');
|
|
}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('link'); //test即为参数id设定的值
|
|
var ids = [];
|
|
$(checkStatus.data).each(function (i, o) {
|
|
ids.push(o.id);
|
|
});
|
|
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});
|
|
table.reload('link');
|
|
} else {
|
|
layer.msg(data.msg, {time: 1000, icon: 2});
|
|
}
|
|
});
|
|
});
|
|
})
|
|
})
|
|
</script>
|