118 lines
2.8 KiB
HTML
118 lines
2.8 KiB
HTML
{extend name="common/base"/}
|
|
<!-- 主体 -->
|
|
{block name="body"}
|
|
<div class="body-content">
|
|
<form class="layui-form" style="display: inline;">
|
|
<input type="text" name="keywords" placeholder="关键字名称" class="layui-input" autocomplete="off"
|
|
style="max-width: 320px; display: inline-block;margin: -10px 10px 0 0;" />
|
|
<button class="layui-btn layui-btn-normal" lay-submit="" lay-filter="webform">提交搜索</button>
|
|
</form>
|
|
<table class="layui-hide" id="test" lay-filter="test"></table>
|
|
</div>
|
|
|
|
<script type="text/html" id="status">
|
|
<i class="layui-icon {{# if(d.status == 1){ }}layui-icon-ok{{# } else { }}layui-icon-close{{# } }}"></i>
|
|
</script>
|
|
<script type="text/html" id="toolbarDemo">
|
|
<div class="layui-btn-container">
|
|
<a class="layui-btn layui-btn-normal layui-btn-sm" href="/admin/keywords/add">添加关键字</a>
|
|
</div>
|
|
</script>
|
|
{/block}
|
|
<!-- /主体 -->
|
|
|
|
<!-- 脚本 -->
|
|
{block name="script"}
|
|
<script>
|
|
function init(layui) {
|
|
var table = layui.table,
|
|
form = layui.form;
|
|
|
|
var tableIns = table.render({
|
|
elem: '#test',
|
|
title: '关键字列表',
|
|
toolbar: '#toolbarDemo',
|
|
url: '/admin/keywords/get_list',
|
|
page: true, //开启分页
|
|
limit: 20,
|
|
cols: [
|
|
[{
|
|
field: 'id',
|
|
width: 80,
|
|
title: 'ID编号',
|
|
align: 'center'
|
|
}, {
|
|
field: 'sort',
|
|
width: 80,
|
|
title: '排序',
|
|
align: 'center',
|
|
edit: "text"
|
|
}, {
|
|
field: 'title',
|
|
title: '关键字名称',
|
|
edit: "text"
|
|
}, {
|
|
field: 'status',
|
|
width: 80,
|
|
title: '状态',
|
|
templet: '#status',
|
|
align: 'center'
|
|
}, {
|
|
width: 120,
|
|
title: '操作',
|
|
align: 'center',
|
|
templet: function (d) {
|
|
var html = '';
|
|
var delBtn = '<a class="layui-btn layui-btn-xs" href="/admin/keywords/add?id=' + d.id + '">编辑</a><a class="layui-btn layui-btn-danger layui-btn-xs" lay-event="del">删除</a>';
|
|
return delBtn;
|
|
}
|
|
}]
|
|
]
|
|
});
|
|
|
|
//监听搜索提交
|
|
form.on('submit(webform)', function (data) {
|
|
if (data.field.keywords) {
|
|
tableIns.reload({
|
|
where: {
|
|
keywords: data.field.keywords
|
|
},
|
|
page: {
|
|
curr: 1
|
|
}
|
|
});
|
|
} else {
|
|
location.reload();
|
|
}
|
|
return false;
|
|
});
|
|
|
|
//删除
|
|
table.on('tool(test)', function (obj) {
|
|
if (obj.event === 'del') {
|
|
layer.confirm('确定要删除吗?', {
|
|
icon: 3,
|
|
title: '提示'
|
|
}, function (index) {
|
|
$.ajax({
|
|
url: "/admin/keywords/delete",
|
|
type: 'post',
|
|
data: {
|
|
id: obj.data.id
|
|
},
|
|
success: function (res) {
|
|
layer.msg(res.msg);
|
|
if (res.code == 1) {
|
|
obj.del();
|
|
}
|
|
}
|
|
})
|
|
layer.close(index);
|
|
});
|
|
}
|
|
});
|
|
}
|
|
</script>
|
|
{include file="common/layui" base='base' extend="[]" use="['table','form']" callback="init" /}
|
|
{/block}
|
|
<!-- /脚本 --> |