You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
215 lines
9.1 KiB
215 lines
9.1 KiB
{extend name="public/container"}
|
|
{block name="head"}
|
|
<style>
|
|
.single-line {
|
|
padding: 0;
|
|
border: none;
|
|
background: none;
|
|
}
|
|
</style>
|
|
{/block}
|
|
{block name="content"}
|
|
<div class="layui-fluid">
|
|
<div class="layui-card">
|
|
<div class="layui-card-header">课程分类</div>
|
|
<div class="layui-card-body">
|
|
<div class="layui-row layui-col-space15">
|
|
<div class="layui-col-md12">
|
|
<form class="layui-form layui-form-pane" action="">
|
|
<div class="layui-form-item">
|
|
<div class="layui-inline">
|
|
<label class="layui-form-label">分类名称</label>
|
|
<div class="layui-input-inline">
|
|
<input type="text" name="name" class="layui-input" placeholder="请输入分类名称" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
<div class="layui-inline">
|
|
<div class="layui-input-inline">
|
|
<div class="layui-btn-group">
|
|
<button class="layui-btn layui-btn-normal layui-btn-sm" lay-submit="search" lay-filter="search">
|
|
<i class="layui-icon"></i>搜索
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="layui-col-md12">
|
|
<div class="layui-btn-group">
|
|
<button type="button" class="layui-btn layui-btn-normal layui-btn-sm" data-type="add">
|
|
<i class="layui-icon"></i>添加分类
|
|
</button>
|
|
<button type="button" class="layui-btn layui-btn-normal layui-btn-sm" data-type="refresh">
|
|
<i class="layui-icon"></i>刷新
|
|
</button>
|
|
</div>
|
|
<table id="List" lay-filter="List"></table>
|
|
<script type="text/html" id="picture">
|
|
{{# if(d.grade_id){ }}
|
|
<img style="cursor: pointer;" src="{{d.pic}}" width="50" height="50" lay-event='open_image'>
|
|
{{# } }}
|
|
</script>
|
|
<script type="text/html" id="is_show">
|
|
<input type='checkbox' name='id' lay-skin='switch' value="{{d.id}}" lay-filter='is_show' lay-text='显示|隐藏' {{ d.is_show == 1 ? 'checked' : '' }}>
|
|
</script>
|
|
<script type="text/html" id="act">
|
|
<button type="button" class="layui-btn layui-btn-normal layui-btn-xs" lay-event="edit">
|
|
<i class="iconfont icon-bianji"></i>编辑
|
|
</button>
|
|
<button type="button" class="layui-btn layui-btn-danger layui-btn-xs" lay-event="del">
|
|
<i class="iconfont icon-shanchu"></i>删除
|
|
</button>
|
|
</script>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="{__ADMIN_PATH}js/layuiList.js"></script>
|
|
{/block}
|
|
{block name="script"}
|
|
<script>
|
|
//实例化form
|
|
layList.form.render();
|
|
//加载列表
|
|
layui.use(['treeTable'], function () {
|
|
var $ = layui.jquery;
|
|
var treeTable = layui.treeTable;
|
|
var insTb = treeTable.render({
|
|
elem: '#List',
|
|
tree: {
|
|
iconIndex: 1,
|
|
isPidData: true,
|
|
idName: 'id',
|
|
pidName: 'grade_id',
|
|
getIcon: function (d) {
|
|
return '';
|
|
}
|
|
},
|
|
cols: [[
|
|
{field: 'id', title: '编号', align: 'center', width: 60},
|
|
{field: 'name', title: '分类名称'},
|
|
{field: 'pic', title: '图片', templet:'#picture', align: 'center'},
|
|
{field: 'special_count', title: '专题数量', align: 'center'},
|
|
{field: 'sort', title: '排序', align: 'center'},
|
|
{field: 'is_show', title: '状态', templet:'#is_show', align: 'center'},
|
|
{field: 'right', title: '操作',align:'center',toolbar:'#act'}
|
|
]],
|
|
reqData: function(data, callback) {
|
|
$.get('{:Url('get_subject_list')}', function (res) {
|
|
if (res.code == 200) {
|
|
callback(res.data)
|
|
} else {
|
|
callback(res.msg)
|
|
}
|
|
}, 'json');
|
|
}
|
|
});
|
|
|
|
treeTable.on('tool(List)', function (obj) {
|
|
var data = obj.data;
|
|
var event = obj.event;
|
|
if (event === 'del') {
|
|
var url=layList.U({a:'delete',q:{id:data.id}});
|
|
$eb.$swal('delete',function(){
|
|
$eb.axios.get(url).then(function(res){
|
|
if(res.status == 200 && res.data.code == 200) {
|
|
$eb.$swal('success',res.data.msg);
|
|
obj.del();
|
|
}else
|
|
return Promise.reject(res.data.msg || '删除失败')
|
|
}).catch(function(err){
|
|
$eb.$swal('error',err);
|
|
});
|
|
})
|
|
}
|
|
if (event === 'edit') {
|
|
layui.layer.open({
|
|
type: 2,
|
|
title: '编辑',
|
|
area: ['800px', '500px'],
|
|
content: "{:Url('create')}?id=" + data.id,
|
|
end: function () {
|
|
window.location.reload();
|
|
}
|
|
});
|
|
}
|
|
});
|
|
//查询
|
|
layList.search('search',function (where) {
|
|
insTb = treeTable.render({
|
|
elem: '#List',
|
|
tree: {
|
|
iconIndex: 1,
|
|
isPidData: true,
|
|
idName: 'id',
|
|
pidName: 'grade_id',
|
|
getIcon: function (d) {
|
|
return '';
|
|
}
|
|
},
|
|
cols: [[
|
|
{field: 'id', title: '编号', align: 'center', width: 60},
|
|
{field: 'name', title: '分类名称'},
|
|
{field: 'pic', title: '图片', templet:'#picture', align: 'center'},
|
|
{field: 'special_count', title: '专题数量', align: 'center'},
|
|
{field: 'sort', title: '排序', align: 'center'},
|
|
{field: 'is_show', title: '状态', templet:'#is_show', align: 'center'},
|
|
{field: 'right', title: '操作',align:'center',toolbar:'#act'}
|
|
]],
|
|
reqData: function(data, callback) {
|
|
$.get('{:Url('get_subject_list')}', where, function (res) {
|
|
if (res.code == 200) {
|
|
callback(res.data)
|
|
} else {
|
|
callback(res.msg)
|
|
}
|
|
}, 'json');
|
|
}
|
|
});
|
|
});
|
|
|
|
$('.layui-btn').on('click', function (event) {
|
|
var type = event.target.dataset.type;
|
|
if (type === 'refresh') {
|
|
insTb.refresh();
|
|
} else if (type === 'add') {
|
|
layui.layer.open({
|
|
type: 2,
|
|
title: '添加分类',
|
|
content: "{:Url('create')}",
|
|
area: ['60%', '70%'],
|
|
end: function () {
|
|
window.location.reload();
|
|
}
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
//自定义方法
|
|
var action= {
|
|
set_value: function (field, id, value) {
|
|
layList.baseGet(layList.Url({
|
|
a: 'set_value',
|
|
q: {field: field, id: id, value: value}
|
|
}), function (res) {
|
|
layList.msg(res.msg);
|
|
});
|
|
},
|
|
};
|
|
//是否显示快捷按钮操作
|
|
layList.switch('is_show',function (odj,value) {
|
|
if(odj.elem.checked==true){
|
|
layList.baseGet(layList.Url({a:'set_show',p:{is_show:1,id:value}}),function (res) {
|
|
layList.msg(res.msg);
|
|
});
|
|
}else{
|
|
layList.baseGet(layList.Url({a:'set_show',p:{is_show:0,id:value}}),function (res) {
|
|
layList.msg(res.msg);
|
|
});
|
|
}
|
|
});
|
|
</script>
|
|
{/block}
|
|
|