193 lines
6.8 KiB
JavaScript
Executable File
193 lines
6.8 KiB
JavaScript
Executable File
var mmg,combo;
|
|
function initGrid(){
|
|
var h = WST.pageHeight();
|
|
var cols = [
|
|
{title:'文章ID', name:'articleId' ,width:30,sortable:true},
|
|
{title:'标题', name:'articleTitle' ,width:200,sortable:true},
|
|
{title:'分类', name:'catName' ,width:100,sortable:true},
|
|
{title:'是否显示', name:'isShow' ,width:50,sortable:true, renderer: function(val,item,rowIndex){
|
|
return '<form autocomplete="off" class="layui-form" lay-filter="gridForm"><input type="checkbox" id="isShow" name="isShow" '+((item['isShow']==1)?"checked":"")+' lay-skin="switch" value="1" lay-filter="isShow" lay-text="显示|隐藏" data="'+item['articleId']+'"></form>';
|
|
}},
|
|
{title:'最后编辑者', name:'staffName' ,width:50,sortable:true},
|
|
{title:'创建时间', name:'createTime' ,width:120,sortable:true},
|
|
{title:'操作', name:'' ,width:100, align:'center', renderer: function(val,item,rowIndex){
|
|
var h = "";
|
|
if(WST.GRANT.WZGL_02)h += "<a class='btn btn-blue' onclick='javascript:toEdit("+item['articleId']+")'><i class='fa fa-pencil'></i>修改</a> ";
|
|
if(WST.GRANT.WZGL_03)h += "<a class='btn btn-red' onclick='javascript:toDel(" + item['articleId'] + ")'><i class='fa fa-trash-o'></i>删除</a> ";
|
|
return h;
|
|
}}
|
|
];
|
|
|
|
mmg = $('.mmg').mmGrid({height: h-85,indexCol: true, cols: cols,method:'POST',checkCol:true,multiSelect:true,
|
|
url: WST.U('admin/articles/pageQuery'), fullWidthRows: true, autoLoad: true,remoteSort: true,
|
|
plugins: [
|
|
$('#pg').mmPaginator({})
|
|
]
|
|
});
|
|
mmg.on('loadSuccess',function(){
|
|
layui.form.render('','gridForm');
|
|
layui.form.on('switch(isShow)', function(data){
|
|
var id = $(this).attr("data");
|
|
if(this.checked){
|
|
toggleIsShow(1,id);
|
|
}else{
|
|
toggleIsShow(0,id);
|
|
}
|
|
});
|
|
})
|
|
}
|
|
|
|
function initCombo(v){
|
|
var setting = {
|
|
check: {
|
|
enable: true,
|
|
chkStyle: "radio",
|
|
radioType: "all"
|
|
},
|
|
view: {
|
|
dblClickExpand: false
|
|
},
|
|
async: {
|
|
enable: true,
|
|
url:WST.U('admin/articlecats/listQuery2','hasRoot='+v),
|
|
autoParam:["id", "name=n", "level=lv"]
|
|
},
|
|
callback: {
|
|
onClick: onClick,
|
|
onCheck: onCheck
|
|
}
|
|
};
|
|
$.fn.zTree.init($("#dropDownTree"), setting);
|
|
}
|
|
function onClick(e, treeId, treeNode) {
|
|
var zTree = $.fn.zTree.getZTreeObj("dropDownTree");
|
|
zTree.checkNode(treeNode, !treeNode.checked, null, true);
|
|
return false;
|
|
}
|
|
|
|
function onCheck(e, treeId, treeNode) {
|
|
var zTree = $.fn.zTree.getZTreeObj("dropDownTree");
|
|
var nodes = zTree.getCheckedNodes(true);
|
|
var v = [],ids = [];
|
|
for (var i=0, l=nodes.length; i<l; i++) {
|
|
v .push(nodes[i].name);
|
|
ids.push(nodes[i].id);
|
|
}
|
|
|
|
$("#catSel").attr("value", v.join(','));
|
|
$('#catId').val(ids.join(','));
|
|
hideMenu();
|
|
}
|
|
function showMenu(){
|
|
var cityObj = $("#catSel");
|
|
var cityOffset = $("#catSel").offset();
|
|
$("#ztreeMenuContent").css({left:cityOffset.left + "px", top:cityOffset.top + cityObj.outerHeight() + "px"}).slideDown("fast");
|
|
$("body").bind("mousedown", onBodyDown);
|
|
}
|
|
function hideMenu(){
|
|
$("#ztreeMenuContent").fadeOut("fast");
|
|
$("body").unbind("mousedown", onBodyDown);
|
|
}
|
|
function onBodyDown(event) {
|
|
if (!(event.target.id == "menuBtn" || event.target.id == "citySel" || event.target.id == "ztreeMenuContent" || $(event.target).parents("#ztreeMenuContent").length>0)) {
|
|
hideMenu();
|
|
}
|
|
}
|
|
function loadGrid(){
|
|
mmg.load({key:$('#key').val(),catId:$('#catId').val(),page:1});
|
|
}
|
|
|
|
function toggleIsShow(t,v){
|
|
if(!WST.GRANT.WZGL_02)return;
|
|
var loading = WST.msg('正在提交数据,请稍后...', {icon: 16,time:60000});
|
|
$.post(WST.U('admin/articles/editiIsShow'),{id:v,isShow:t},function(data,textStatus){
|
|
layer.close(loading);
|
|
var json = WST.toAdminJson(data);
|
|
if(json.status=='1'){
|
|
WST.msg(json.msg,{icon:1});
|
|
mmg.load();
|
|
}else{
|
|
WST.msg(json.msg,{icon:2});
|
|
}
|
|
});
|
|
}
|
|
|
|
function toggleIsShow(t,v){
|
|
if(!WST.GRANT.WZGL_02)return;
|
|
var loading = WST.msg('正在提交数据,请稍后...', {icon: 16,time:60000});
|
|
$.post(WST.U('admin/articles/editiIsShow'),{id:v,isShow:t},function(data,textStatus){
|
|
layer.close(loading);
|
|
var json = WST.toAdminJson(data);
|
|
if(json.status=='1'){
|
|
WST.msg(json.msg,{icon:1});
|
|
loadGrid();
|
|
}else{
|
|
WST.msg(json.msg,{icon:2});
|
|
}
|
|
});
|
|
}
|
|
|
|
function toEdit(id){
|
|
location.href=WST.U('admin/articles/toEdit','id='+id);
|
|
}
|
|
|
|
function toEdits(id){
|
|
var params = WST.getParams('.ipt');
|
|
params.id = id;
|
|
var loading = WST.msg('正在提交数据,请稍后...', {icon: 16,time:60000});
|
|
$.post(WST.U('admin/articles/'+((id>0)?"edit":"add")),params,function(data,textStatus){
|
|
layer.close(loading);
|
|
var json = WST.toAdminJson(data);
|
|
if(json.status=='1'){
|
|
WST.msg(json.msg,{icon:1});
|
|
setTimeout(function(){
|
|
location.href=WST.U('admin/articles/index');
|
|
},1000);
|
|
}else{
|
|
WST.msg(json.msg,{icon:2});
|
|
}
|
|
});
|
|
}
|
|
|
|
function toDel(id){
|
|
var box = WST.confirm({content:"您确定要删除该文章吗?",yes:function(){
|
|
var loading = WST.msg('正在提交数据,请稍后...', {icon: 16,time:60000});
|
|
$.post(WST.U('admin/articles/del'),{id:id},function(data,textStatus){
|
|
layer.close(loading);
|
|
var json = WST.toAdminJson(data);
|
|
if(json.status=='1'){
|
|
WST.msg(json.msg,{icon:1});
|
|
layer.close(box);
|
|
loadGrid();
|
|
}else{
|
|
WST.msg(json.msg,{icon:2});
|
|
}
|
|
});
|
|
}});
|
|
}
|
|
|
|
function toBatchDel(){
|
|
var rows = mmg.selectedRows();
|
|
if(rows.length==0){
|
|
WST.msg('请选择要删除的文章',{icon:2});
|
|
return;
|
|
}
|
|
var ids = [];
|
|
for(var i=0;i<rows.length;i++){
|
|
ids.push(rows[i]['articleId']);
|
|
}
|
|
var box = WST.confirm({content:"您确定要删除这些文章吗?",yes:function(){
|
|
var loading = WST.msg('正在提交数据,请稍后...', {icon: 16,time:60000});
|
|
$.post(WST.U('admin/articles/delByBatch'),{ids:ids.join(',')},function(data,textStatus){
|
|
layer.close(loading);
|
|
var json = WST.toAdminJson(data);
|
|
if(json.status=='1'){
|
|
WST.msg(json.msg,{icon:1});
|
|
layer.close(box);
|
|
loadGrid();
|
|
}else{
|
|
WST.msg(json.msg,{icon:2});
|
|
}
|
|
});
|
|
}});
|
|
} |