mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
108 lines
4.9 KiB
PHP
108 lines
4.9 KiB
PHP
{extend name='../../admin/view/table'}
|
|
|
|
{block name="button"}
|
|
<!--{if auth("add")}-->
|
|
<button data-open='{:url("add")}' class='layui-btn layui-btn-sm layui-btn-primary'>添加文章</button>
|
|
<!--{/if}-->
|
|
|
|
<!--{if auth("remove")}-->
|
|
<button data-action='{:url("remove")}' data-table-id="NewsTable" data-rule="id#{id}" data-confirm="确定要批量删除文章吗?" class='layui-btn layui-btn-sm layui-btn-primary'>批量删除</button>
|
|
<!--{/if}-->
|
|
|
|
<!--{if auth("news.mark/index")}-->
|
|
<button class='layui-btn layui-btn-sm layui-btn-primary' data-modal='{:url("news.mark/index")}' data-title="标签管理" data-width="920px">标签管理</button>
|
|
<!--{/if}-->
|
|
{/block}
|
|
|
|
{block name="content"}
|
|
<div class="layui-tab layui-tab-card">
|
|
<ul class="layui-tab-title">
|
|
{foreach ['index'=>'文章管理','recycle'=>'回 收 站'] as $k=>$v}{if isset($type) and $type eq $k}
|
|
<li data-open="{:url('index')}?type={$k}" class="layui-this color-green">{$v}</li>
|
|
{else}
|
|
<li data-open="{:url('index')}?type={$k}">{$v}</li>
|
|
{/if}{/foreach}
|
|
</ul>
|
|
<div class="layui-tab-content">
|
|
{include file='news/item/index_search'}
|
|
<table id="NewsTable" data-url="{:sysuri()}" data-target-search="form.form-search"></table>
|
|
</div>
|
|
</div>
|
|
{/block}
|
|
|
|
{block name='script'}
|
|
<script>
|
|
$(function () {
|
|
// 初始化表格组件
|
|
$('#NewsTable').layTable({
|
|
even: true, height: 'full',
|
|
sort: {field: 'sort desc,code', type: 'desc'},
|
|
where: {type: '{$type|default="index"}'},
|
|
cols: [[
|
|
{checkbox: true, fixed: true},
|
|
{field: 'sort', title: '排序权重', align: 'center', width: 100, sort: true, templet: '#SortInputTpl'},
|
|
{field: 'id', title: 'ID', align: "center", width: 80},
|
|
/* {notempty name='marks'} */
|
|
{
|
|
field: 'mark', title: '文章标签', align: 'left', minWidth: 100, templet: function (d) {
|
|
return (d.html = ''), d.mark.forEach(function (val) {
|
|
d.html += '<span class="layui-badge layui-bg-blue">' + val + '</span>';
|
|
}), d.html;
|
|
}
|
|
},
|
|
/* {/marks} */
|
|
{
|
|
field: 'cover', title: '图片', width: 60, align: 'center', templet: function (d) {
|
|
if (!d.cover) return '';
|
|
return layui.laytpl('<div data-tips-image data-tips-hover class="headimg headimg-xs headimg-no margin-0" data-lazy-src="{{d.cover}}"></div>').render(d);
|
|
}
|
|
},
|
|
{field: 'name', title: '文章标题', align: 'left', minWidth: 140},
|
|
{field: 'num_read', title: '阅读数', align: 'center', minWidth: 80, sort: true, style: 'color:blue;font-size:16px'},
|
|
{field: 'status', title: '状态', align: 'center', minWidth: 110, templet: '#StatusSwitchTpl'},
|
|
{field: 'create_at', title: '创建时间', align: 'center', minWidth: 170, sort: true},
|
|
{toolbar: '#toolbar', title: '操作面板', align: 'center', minWidth: 160, fixed: 'right'},
|
|
]]
|
|
});
|
|
|
|
// 数据状态切换操作
|
|
layui.form.on('switch(StatusSwitch)', function (obj) {
|
|
var data = {id: obj.value, status: obj.elem.checked > 0 ? 1 : 0};
|
|
$.form.load("{:url('state')}", data, 'post', function (ret) {
|
|
if (ret.code < 1) $.msg.error(ret.info, 3, function () {
|
|
$('#NewsTable').trigger('reload');
|
|
}); else {
|
|
$('#NewsTable').trigger('reload');
|
|
}
|
|
return false;
|
|
}, false);
|
|
});
|
|
});
|
|
|
|
</script>
|
|
|
|
<!-- 列表排序权重模板 -->
|
|
<script type="text/html" id="SortInputTpl">
|
|
<input type="number" min="0" data-blur-number="0" data-action-blur="{:sysuri()}" data-value="id#{{d.id}};action#sort;sort#{value}" data-loading="false" value="{{d.sort}}" class="layui-input text-center">
|
|
</script>
|
|
|
|
<!-- 数据状态切换模板 -->
|
|
<script type="text/html" id="StatusSwitchTpl">
|
|
<!--{if auth("state")}-->
|
|
<input type="checkbox" value="{{d.id}}" lay-skin="switch" lay-text="已激活|已禁用" lay-filter="StatusSwitch" {{-d.status>0?'checked':''}}>
|
|
<!--{else}-->
|
|
{{-d.status ? '<b class="color-green">已启用</b>' : '<b class="color-red">已禁用</b>'}}
|
|
<!--{/if}-->
|
|
</script>
|
|
|
|
<!-- 数据操作工具条模板 -->
|
|
<script type="text/html" id="toolbar">
|
|
<!--{if auth("edit") and isset($type) and $type eq 'index'}-->
|
|
<a class="layui-btn layui-btn-primary layui-btn-sm" data-open='{:url("edit")}?id={{d.id}}'>编 辑</a>
|
|
<!--{/if}-->
|
|
|
|
<!--{if auth("remove") and isset($type) and $type neq 'index'}-->
|
|
<a class="layui-btn layui-btn-danger layui-btn-sm" data-action="{:url('remove')}" data-value="id#{{d.id}}" data-confirm="确定要删除文章吗?">删 除</a>
|
|
<!--{/if}-->
|
|
</script>
|
|
{/block} |