226 lines
9.2 KiB
HTML
226 lines
9.2 KiB
HTML
{layout name="layout1" /}
|
|
<div class="layui-fluid">
|
|
<div class="layui-card">
|
|
<div class="layui-card-body">
|
|
<div class="layui-collapse like-layui-collapse" lay-accordion="" style="border:1px dashed #c4c4c4">
|
|
<div class="layui-colla-item">
|
|
<h2 class="layui-colla-title like-layui-colla-title" style="background-color: #fff">操作提示</h2>
|
|
<div class="layui-colla-content layui-show">
|
|
<p>*设置员工端的公告,增加、修改、删除操作。</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-tab layui-tab-card" lay-filter="tab-all">
|
|
<div class="layui-card">
|
|
|
|
<div class="layui-card-body">
|
|
<div style="padding-bottom: 10px;" class="add">
|
|
<button class="layui-btn layui-btn-sm layuiadmin-btn-user_level {$view_theme_color}" data-type="add">增加公告</button>
|
|
</div>
|
|
<table id="user_level-lists" lay-filter="user_level-lists"></table>
|
|
|
|
|
|
<script type="text/html" id="user_level-operation">
|
|
<a class="layui-btn layui-btn-normal layui-btn-sm" lay-event="edit">编辑</a>
|
|
<a class="layui-btn layui-btn-danger layui-btn-sm" id="adjust_level" lay-event="adjust_level">删除</a>
|
|
</script>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<style>
|
|
.layui-table-cell {
|
|
height: auto;
|
|
}
|
|
</style>
|
|
<script>
|
|
layui.config({
|
|
version:"{$front_version}",
|
|
base: '/static/plug/layui-admin/dist/layuiadmin/' //静态资源所在路径
|
|
}).extend({
|
|
index: 'lib/index' //主入口模块
|
|
}).use(['index','table','like','form'], function(){
|
|
var $ = layui.$
|
|
,form = layui.form
|
|
,table = layui.table
|
|
,like = layui.like
|
|
,element = layui.element;
|
|
|
|
//图片放大
|
|
$(document).on('click', '.image-show', function () {
|
|
var src = $(this).attr('src');
|
|
like.showImg(src,600);
|
|
});
|
|
|
|
$('.layui-btn.layuiadmin-btn-user_level').on('click', function(){
|
|
var type = $(this).data('type');
|
|
active[type] ? active[type].call(this) : '';
|
|
});
|
|
layui.define(['table', 'form'], function(exports){
|
|
var $ = layui.$
|
|
,table = layui.table
|
|
,form = layui.form;
|
|
|
|
//管理员管理
|
|
table.render({
|
|
id:'user_level-lists'
|
|
,elem: '#user_level-lists'
|
|
,url: '{:url("staff/staff_notice")}' //模拟接口
|
|
,cols: [[
|
|
|
|
{type: 'checkbox'}
|
|
,{field: 'id', width: 60, title: 'ID', sort: true,}
|
|
,{field: 'title', title: '公告标题',}
|
|
,{field: 'introduction', title: '公告简介'}
|
|
,{field: 'time', title: '创建时间',}
|
|
,{fixed: 'right', title: '操作', width: 140,toolbar: '#user_level-operation'}
|
|
]]
|
|
,page:true
|
|
,text: {none: '暂无数据!'}
|
|
,parseData: function(res){ //将原始数据解析成 table 组件所规定的数据
|
|
return {
|
|
"code":res.code,
|
|
"msg":res.msg,
|
|
"count": res.data.count, //解析数据长度
|
|
"data": res.data.lists, //解析数据列表
|
|
};
|
|
}
|
|
,done: function(res, curr, count){
|
|
// 解决操作栏因为内容过多换行问题
|
|
$(".layui-table-main tr").each(function (index, val) {
|
|
$($(".layui-table-fixed-l .layui-table-body tbody tr")[index]).height($(val).height());
|
|
$($(".layui-table-fixed-r .layui-table-body tbody tr")[index]).height($(val).height());
|
|
});
|
|
}
|
|
});
|
|
|
|
});
|
|
|
|
|
|
//事件
|
|
var active = {
|
|
add: function(){
|
|
var index = layer.open({
|
|
type: 2
|
|
,title: '添加员工分组'
|
|
,content: '{:url("staff/staff_noticeadd")}'
|
|
,area: ['40%', '50%']
|
|
,btn: ['保存', '取消']
|
|
,maxmin: true
|
|
,yes: function(index, layero){
|
|
var iframeWindow = window['layui-layer-iframe'+ index]
|
|
,submitID = 'add-user_level-submit'
|
|
,submit = layero.find('iframe').contents().find('#'+ submitID);
|
|
//监听提交
|
|
iframeWindow.layui.form.on('submit('+ submitID +')', function(data){
|
|
var field = data.field;
|
|
like.ajax({
|
|
url:'{:url("staff/staff_noticeadd")}',
|
|
data:field,
|
|
type:"post",
|
|
success:function(res)
|
|
{
|
|
if(res.code == 1)
|
|
{
|
|
layui.layer.msg(res.msg, {
|
|
offset: '15px'
|
|
, icon: 1
|
|
, time: 1000
|
|
});
|
|
layer.close(index); //关闭弹层
|
|
table.reload('user_level-lists'); //数据刷新
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
submit.trigger('click');
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
table.on('tool(user_level-lists)', function(obj) {
|
|
var id = obj.data.id;
|
|
if(obj.event === 'edit'){
|
|
var id = obj.data.id;
|
|
layer.open({
|
|
type: 2
|
|
,title: '修改员工公告'
|
|
,content: '{:url("staff/staff_noticedit")}?id='+id
|
|
,area: ['40%', '50%']
|
|
,btn: ['确定', '取消']
|
|
,yes: function(index, layero){
|
|
var iframeWindow = window['layui-layer-iframe'+ index]
|
|
,submit = layero.find('iframe').contents().find('#edit-submit');
|
|
//监听提交
|
|
iframeWindow.layui.form.on('submit(edit-submit)', function(data){
|
|
var field = data.field;
|
|
$.ajax({
|
|
url:'{:url("staff/staff_noticedit")}?id='+id,
|
|
data:field,
|
|
type:"post",
|
|
success:function(res)
|
|
{
|
|
if(res.code == 1)
|
|
{
|
|
layui.layer.msg(res.msg, {
|
|
offset: '15px'
|
|
, icon: 1
|
|
, time: 1000
|
|
});
|
|
layer.close(index); //关闭弹层
|
|
table.reload('user_level-lists'); //数据刷新
|
|
}else{
|
|
layer.msg(res.msg, {
|
|
offset: '15px'
|
|
, icon: 2
|
|
, time: 1000
|
|
});
|
|
}
|
|
}
|
|
});
|
|
});
|
|
submit.trigger('click');
|
|
}
|
|
})
|
|
|
|
}
|
|
|
|
if(obj.event === 'adjust_level'){
|
|
var id = obj.data.id;
|
|
layer.confirm('确定删除员工端公告', function(index){
|
|
$.ajax({
|
|
url:'{:url("staff/staff_noticedel")}',
|
|
data:{id:id},
|
|
type:"post",
|
|
success:function(res)
|
|
{
|
|
if(res.code == 1)
|
|
{
|
|
layui.layer.msg(res.msg, {
|
|
offset: '15px'
|
|
, icon: 1
|
|
, time: 1000
|
|
});
|
|
layer.close(index); //关闭弹层
|
|
table.reload('user_level-lists'); //数据刷新
|
|
obj.del();
|
|
}
|
|
}
|
|
});
|
|
layer.close(index);
|
|
});
|
|
|
|
|
|
}
|
|
|
|
})
|
|
|
|
});
|
|
</script> |