mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
89 lines
3.9 KiB
PHP
89 lines
3.9 KiB
PHP
{extend name='../../admin/view/table'}
|
|
|
|
{block name="button"}
|
|
<!--{if auth("add")}-->
|
|
<button class='layui-btn layui-btn-sm layui-btn-primary' data-table-id="DiscountTable" data-modal="{:url('add')}" data-title="添加折扣">添加折扣</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">{$v}</li>
|
|
{else}
|
|
<li data-open="{:url('index')}?type={$k}">{$v}</li>
|
|
{/if}{/foreach}
|
|
</ul>
|
|
<div class="layui-tab-content">
|
|
<table id="DiscountTable" data-url="{:sysuri()}" data-target-search="form.form-search"></table>
|
|
</div>
|
|
</div>
|
|
{/block}
|
|
|
|
{block name='script'}
|
|
<script>
|
|
$(function () {
|
|
// 初始化表格组件
|
|
$('#DiscountTable').layTable({
|
|
even: true, height: 'full',
|
|
sort: {field: 'sort desc,id', type: 'desc'},
|
|
where: {type: '{$type|default="index"}'},
|
|
cols: [[
|
|
{field: 'id', title: 'ID', align: "center", width: 80},
|
|
{field: 'sort', title: '排序权重', align: 'center', width: 100, sort: true, templet: '#SortInputTpl'},
|
|
{field: 'name', title: '折扣名称', align: 'left', minWidth: 140},
|
|
{
|
|
field: 'items', title: '折扣方案', align: 'left', width: '33%', templet: function (d) {
|
|
return (d.html = ''), d.items.forEach(function (item) {
|
|
d.html += laytpl('<span class="layui-badge layui-bg-gray">VIP{{d.level}} 折扣 {{d.discount}}%</span>').render(item);
|
|
}), d.html;
|
|
}
|
|
},
|
|
{field: 'status', title: '状态', align: 'center', width: 110, templet: '#StatusSwitchTpl'},
|
|
{field: 'create_at', title: '创建时间', align: 'center', minWidth: 170, sort: true},
|
|
{toolbar: '#toolbar', title: '操作面板', align: 'center', minWidth: 80, 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 () {
|
|
$('#DiscountTable').trigger('reload');
|
|
}); else {
|
|
$('#DiscountTable').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-title="编辑折扣" data-modal='{: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} |