<title>商品表</title>
|
<!--当前位置开始-->
|
<div class="layui-card layadmin-header">
|
<div class="layui-breadcrumb" lay-filter="breadcrumb">
|
<script type="text/html" template lay-done="layui.data.updateMainBreadcrumb();">
|
</script>
|
</div>
|
</div>
|
<!--当前位置结束-->
|
<style>
|
/* 重写样式 */
|
</style>
|
<script type="text/html" template lay-done="layui.data.done(d);">
|
|
</script>
|
|
<script type="text/html" id="LAY-app-getGoods-toolbar">
|
<div class="layui-form coreshop-toolbar-search-form">
|
<div class="layui-form-item">
|
<div class="layui-inline">
|
<label class="layui-form-label" for="name">商品名称</label>
|
<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-CoreCmsGoods-search"><i class="layui-icon layui-icon-search"></i>筛选</button>
|
</div>
|
</div>
|
</div>
|
</script>
|
|
<div class="noDefaultToolbar">
|
<table id="LAY-app-CoreCmsGoods-tableBox" lay-filter="LAY-app-CoreCmsGoods-tableBox"></table>
|
</div>
|
|
<script type="text/html" id="LAY-app-CoreCmsGoods-tableBox-bar">
|
<a class="layui-btn layui-btn-xs" lay-event="selectGoods">选择</a>
|
</script>
|
|
<script>
|
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-CoreCmsGoods-search)',
|
function (data) {
|
var field = data.field;
|
searchwhere = field;
|
//执行重载
|
table.reloadData('LAY-app-CoreCmsGoods-tableBox', { where: field });
|
});
|
//数据绑定
|
table.render({
|
elem: '#LAY-app-CoreCmsGoods-tableBox',
|
url: layui.setter.apiUrl + 'Api/CoreCmsAdvertisement/GetGoods',
|
method: 'POST',
|
toolbar: '#LAY-app-getGoods-toolbar',
|
defaultToolbar: ['filter', 'print', 'exports'],
|
height: 'full-260',//无面包屑127,搜索框189,1行62
|
page: true,
|
limit: 30,
|
limits: [10, 15, 20, 25, 30, 50, 100, 200],
|
text: { none: '暂无相关数据' },
|
cols: [
|
[
|
{ field: 'id', title: '商品ID', width: 80, sort: false },
|
{ field: 'name', title: '商品名称', sort: false },
|
{
|
field: 'image', title: '图集', width: 100, sort: false,
|
templet: function (d) {
|
if (d.image) {
|
return '<a href="javascript:void(0);" onclick=layui.coreHelper.viewImage("' + d.image + '")><image style="max-width:28px;max-height:28px;" src="' + d.image + '" /></a>';
|
} else {
|
return '<a href="javascript:void(0);" onclick=layui.coreHelper.viewImage("' + setter.noImagePicUrl + '")><image style="max-width:30px;max-height:30px;" src="' + setter.noImagePicUrl + '" /></a>';
|
}
|
}
|
},
|
{ field: 'stock', title: '库存', sort: false, width: 105 },
|
{ width: 92, align: 'center', title: '操作', fixed: 'right', toolbar: '#LAY-app-CoreCmsGoods-tableBox-bar' }
|
]
|
]
|
});
|
});
|
};
|
</script>
|