jh-admin/addon/saas/shop/view/adv/index.html

216 lines
4.9 KiB
HTML

{extend name="app/shop/view/base.html"/}
{block name="resources"}
<style>
.layui-layout-admin .single-filter-box {
margin-top: 10px;
}
</style>
{/block}
{block name="main"}
<div class="layui-collapse tips">
<div class="layui-colla-item">
<h2 class="layui-colla-title">操作提示</h2>
<ul class="layui-colla-content layui-show">
<li>您可以查看和编辑广告位的宽度和高度</li>
</ul>
</div>
</div>
<div class="single-filter-box">
<button class="layui-btn bg-color" onclick="add()">添加广告位</button>
<div class="layui-form">
<div class="layui-input-inline">
<input type="text" name="search_text" placeholder="请输入广告位置" class="layui-input">
<button type="button" class="layui-btn layui-btn-primary" lay-filter="search" lay-submit>
<i class="layui-icon">&#xe615;</i>
</button>
</div>
</div>
</div>
<!-- 列表 -->
<table id="adv_position" lay-filter="adv_position"></table>
<!-- 广告位宽度 -->
<script type="text/html" id="ap_width">
<input name="ap_width" type="number" onchange="editPosition({{d.ap_id}}, 'ap_width', this)" value="{{d.ap_width}}" class="layui-input sort-len">
</script>
<!-- 广告位高度 -->
<script type="text/html" id="ap_height">
<input name="ap_height" type="number" onchange="editPosition({{d.ap_id}}, 'ap_height', this)" value="{{d.ap_height}}" class="layui-input sort-len">
</script>
<!-- 广告位类型 -->
<script type="text/html" id="type">
{{ d.type == 1 ? 'pc端' : '手机端' }}
</script>
<!-- 操作 -->
<script type="text/html" id="operation">
<div class="table-btn">
<a class="layui-btn" lay-event="manager">管理广告</a>
<a class="layui-btn" lay-event="edit">编辑</a>
<a class="layui-btn" lay-event="delete">删除</a>
</div>
</script>
<!-- 批量删除 -->
<script type="text/html" id="batchOperation">
<button class="layui-btn layui-btn-primary" lay-event="del">批量删除</button>
</script>
{/block}
{block name="script"}
<script>
var table, form,
repeat_flag = false; //防重复标识
layui.use('form', function() {
form = layui.form;
form.render();
table = new Table({
elem: '#adv_position',
url: ns.url("saas://shop/SupplyAd/position"),
cols: [
[{
width: '3%',
type: 'checkbox',
unresize: 'false',
}, {
field: 'ap_name',
title: '广告位置名',
unresize: 'false',
width: '20%'
}, {
field: 'keyword',
title: '广告关键字',
unresize: 'false',
width: '20%'
}, {
title: '广告位宽度',
unresize: 'false',
templet: '#ap_width',
width: '15%'
}, {
title: '广告位高度',
unresize: 'false',
templet: '#ap_height',
width: '15%'
}, {
title: '操作',
toolbar: '#operation',
unresize: 'false',
width: '17%'
}]
],
bottomToolbar: "#batchOperation"
});
/**
* 监听工具栏操作
*/
table.tool(function(obj) {
var data = obj.data;
switch (obj.event) {
case 'manager': //管理
location.href = ns.url("saas://shop/SupplyAd/lists?ap_id=" + data.ap_id);
break;
case 'edit': //编辑
location.href = ns.url("saas://shop/SupplyAd/editPosition?ap_id=" + data.ap_id);
break;
case 'delete': //删除
deletePosition(data.ap_id);
break;
}
});
/**
* 批量操作
*/
table.bottomToolbar(function(obj) {
if (obj.data.length < 1) {
layer.msg('请选择要操作的数据');
return;
}
switch (obj.event) {
case "del":
var id_array = new Array();
for (i in obj.data) id_array.push(obj.data[i].ap_id);
deletePosition(id_array.toString());
break;
}
});
/**
* 删除
*/
function deletePosition(ap_ids) {
if (repeat_flag) return false;
repeat_flag = true;
layer.confirm('确定要删除该广告位吗?', function() {
$.ajax({
url: ns.url("saas://shop/SupplyAd/deletePosition"),
data: {ap_ids},
dataType: 'JSON',
type: 'POST',
success: function(res) {
layer.msg(res.message);
repeat_flag = false;
if (res.code == 0) {
table.reload();
}
}
});
}, function() {
layer.close();
repeat_flag = false;
});
}
/**
* 监听搜索
*/
form.on('submit(search)', function(data) {
table.reload({
page: {
curr: 1
},
where: data.field
});
});
});
// 监听单元格编辑--编辑宽度
function editPosition(id, type, event) {
var value = $(event).val();
if (!new RegExp("^\\d+$").test(value)) {
layer.msg("广告位宽高必须为大于等于0的整数");
return;
}
$.ajax({
type: 'POST',
url: ns.url("saas://shop/SupplyAd/editPositionField"),
data: {
'type': type,
'value': value,
'ap_id': id
},
dataType: 'JSON',
success: function(res) {
layer.msg(res.message);
if (res.code == 0) {
table.reload();
}
}
});
}
function add() {
location.href = ns.url("saas://shop/SupplyAd/addPosition");
}
</script>
{/block}