<script type="text/html" template lay-done="layui.data.done(d);">
|
|
</script>
|
<script type="text/html" id="LAY-app-getGroupIds-toolbar">
|
<div class="layui-form coreshop-toolbar-search-form">
|
<div class="layui-form-item">
|
<div class="layui-inline">
|
<div class="layui-input-inline">
|
<input type="text" name="name" id="name" placeholder="请输入团购(秒杀)名称" class="layui-input">
|
</div>
|
</div>
|
<div class="layui-inline">
|
<button class="layui-btn layui-btn-sm" lay-submit lay-filter="LAY-app-CoreCmsPromotion-search"><i class="layui-icon layui-icon-search"></i>筛选</button>
|
</div>
|
<div class="layui-inline"><div class="layui-form-mid">您选择了:<span id="tagGroupsNum">0</span>个团购</div></div>
|
<button class="layui-btn layui-btn-sm float-right" lay-submit lay-filter="LAY-app-CoreCmsCommon-GetGroupIds-submit" style="float: right"><i class="layui-icon layui-icon-add-1"></i>提交选项</button>
|
</div>
|
</div>
|
</script>
|
<div class="noDefaultToolbar">
|
<table id="LAY-app-CoreCmsPromotion-tableBox" lay-filter="LAY-app-CoreCmsPromotion-tableBox"></table>
|
</div>
|
|
<script>
|
var ids = {};
|
var table_data = new Array();
|
var indexData;
|
var debug = layui.setter.debug;
|
layui.data.done = function (d) {
|
//开启调试情况下获取接口赋值数据
|
if (debug) { console.log(d); }
|
|
indexData = d.data;
|
layui.use(['index', 'table', 'laydate', 'util', 'coreHelper'],
|
function () {
|
var $ = layui.$
|
, admin = layui.admin
|
, table = layui.table
|
, form = layui.form
|
, laydate = layui.laydate
|
, setter = layui.setter
|
, coreHelper = layui.coreHelper
|
, util = layui.util
|
, view = layui.view;
|
|
//重载form
|
form.render();
|
var searchwhere;
|
//监听搜索
|
form.on('submit(LAY-app-CoreCmsPromotion-search)',
|
function (data) {
|
var field = data.field;
|
searchwhere = field;
|
//执行重载
|
table.reloadData('LAY-app-CoreCmsPromotion-tableBox', { where: field });
|
});
|
//数据绑定
|
table.render({
|
elem: '#LAY-app-CoreCmsPromotion-tableBox',
|
url: layui.setter.apiUrl + 'Api/Tools/TagPromotions',
|
method: 'POST',
|
toolbar: '#LAY-app-getGroupIds-toolbar',
|
defaultToolbar: null,
|
where: { id: 3 },
|
height: 'full-260',//无面包屑127,搜索框189,1行62
|
page: true,
|
limit: 30,
|
limits: [10, 15, 20, 25, 30, 50, 100, 200],
|
text: { none: '暂无相关数据' },
|
cols: [
|
[
|
{ type: "checkbox", fixed: "left" },
|
{ field: 'id', title: '序列', width: 60, sort: false },
|
{ field: 'name', title: '团购名称', sort: false },
|
{ field: 'sort', title: '权重', sort: false, width: 105 },
|
]
|
],
|
done: function (res, curr, count) {
|
//数据表格加载完成时调用此函数
|
//如果是异步请求数据方式,res即为你接口返回的信息。
|
//如果是直接赋值的方式,res即为:{data: [], count: 99} data为当前页数据、count为数据总长度
|
|
//设置全部数据到全局变量
|
table_data = res.data;
|
|
//在缓存中找到id ,然后设置data表格中的选中状态
|
//循环所有数据,找出对应关系,设置checkbox选中状态
|
for (var i = 0; i < res.data.length; i++) {
|
if (ids[res.data[i].id]) {
|
//这里才是真正的有效勾选
|
res.data[i]["LAY_CHECKED"] = 'true';
|
//找到对应数据改变勾选样式,呈现出选中效果
|
var index = res.data[i]['LAY_INDEX'];
|
$('#LAY-app-CoreCmsPromotion-tableBox + div .layui-table-body tr[data-index=' + index + '] input[type="checkbox"]').prop('checked', true);
|
$('#LAY-app-CoreCmsPromotion-tableBox + div .layui-table-body tr[data-index=' + index + '] input[type="checkbox"]').next().addClass('layui-form-checked');
|
}
|
}
|
//设置全选checkbox的选中状态,只有改变LAY_CHECKED的值, table.checkStatus才能抓取到选中的状态
|
var checkStatus = layui.table.checkStatus('LAY-app-CoreCmsPromotion-tableBox');
|
if (checkStatus.isAll) {
|
$('#LAY-app-CoreCmsPromotion-tableBox + div .layui-table-header th[data-field="0"] input[type="checkbox"]').prop('checked', true);
|
$('#LAY-app-CoreCmsPromotion-tableBox + div .layui-table-header th[data-field="0"] input[type="checkbox"]').next().addClass('layui-form-checked');
|
}
|
}
|
});
|
|
//监听表格复选框选择
|
layui.table.on('checkbox(LAY-app-CoreCmsPromotion-tableBox)', function (obj) {
|
if (obj.checked) {
|
if (obj.type == 'one') {
|
ids[obj.data.id] = obj.data;
|
} else {
|
for (var i = 0; i < table_data.length; i++) {
|
ids[table_data[i].id] = table_data[i];
|
}
|
}
|
//the_val[obj.data.id] = obj.data;
|
} else {
|
if (obj.type == 'one') {
|
delete ids[obj.data.id];
|
} else {
|
for (var i = 0; i < table_data.length; i++) {
|
delete ids[table_data[i].id];
|
}
|
}
|
}
|
$('#tagGroupsNum').html(Object.getOwnPropertyNames(ids).length);
|
});
|
|
});
|
};
|
</script>
|