Commit 2b41339e authored by xingyue400's avatar xingyue400
Browse files

更新 index.js

parent c74daf33
layui.define([ 'form', 'laydate', 'table' ], function(exports) { layui.define(['form', 'laydate', 'table', 'treeGrid'], function (exports) {
var form = layui.form; var form = layui.form;
var laydate = layui.laydate; var laydate = layui.laydate;
var table = layui.table; // var table = layui.table;
var treeGrid = layui.treeGrid;
var userTable = null; var userTable = null;
var view ={
init:function(){ var view = {
init: function () {
this.initTable(); this.initTable();
this.initSearchForm(); this.initSearchForm();
this.initToolBar(); this.initToolBar();
window.dataReload = function(){ window.dataReload = function () {
Lib.doSearchForm($("#orgSearchForm"),userTable) Lib.doSearchForm($("#orgSearchForm"), userTable)
} }
}, },
initTable:function(){ initTable: function () {
userTable = table.render({ userTable = treeGrid.render({
elem : '#orgTable', elem: '#orgTable',
height : Lib.getTableHeight(2), height : Lib.getTableHeight(4),
method : 'post', url: Common.ctxPath + '/admin/org/list.json',
url : Common.ctxPath + '/admin/org/list.json' //数据接口 method: 'post',
,page : {"layout":['count','prev', 'page', 'next']} //开启分页 cellMinWidth: 100,
,limit : 10, treeId: 'id',//树形id字段名称
cols : [ [ //表头 treeUpId: 'parentOrgId',//树形父id字段名称
treeShowName: 'name',//以树形式显示的字段
cols: [[ //表头
// {type: 'numbers', title: '序号', fixed: 'left'},
{type: 'numbers', title: '序号'},
{ {
type : 'checkbox', type: 'checkbox',
fixed:'left', // fixed: 'left'
}, { // fixed: 'left'
field : 'id',
title : 'id',
width : 80,
fixed:'left',
sort : true
}, {
field : 'code',
title : '机构代码',
width : 150
}, {
field : 'name',
title : '机构名称',
width : 120,
sort : true
}, {
field : 'parentOrgText',
title : '上一级机构',
width : 150,
sort : true
}, },
{ {
field : 'typeText', field: 'name',
title : '机构类型', title: '机构名称',
width : 120, width: 500
sort : true
}, },
{ {
field : 'createTime', field: 'typeText',
title : '创建时间', title: '机构类型',
width : 120, width: 120,
templet:function(d){ align: 'center'
return Common.getDate(d.createTime);
}, },
sort : true {
field: 'createTime',
title: '创建时间',
width: 120,
align: 'center',
templet: function (d) {
return Common.getDate(d.createTime);
}
}, {
field: 'id',
title: 'id',
width: 50,
align: 'center'
} }
] ] ]],
done: function (res, curr, count) {
$("[data-field='id']").css('display', 'none');
},
page: false
}); });
}, },
initSearchForm:function(){ initSearchForm: function () {
Lib.initSearchForm( $("#orgSearchForm"),userTable,form); Lib.initSearchForm($("#orgSearchForm"), userTable, form);
}, },
initToolBar:function(){ initToolBar: function () {
toolbar = { toolbar = {
add : function() { //获取选中数据 add: function () { //获取选中数据
var url = "/admin/org/add.do"; var url = "/admin/org/add.do";
Common.openDlg(url,"用户管理>新增"); Common.openDlg(url, "用户管理>新增");
}, },
edit : function() { //获取选中数目 edit: function () { //获取选中数目
var data = Common.getOneFromTable(table,"orgTable");
if(data==null){ var data = Common.getOneFromTable(treeGrid, "orgTable");
return ; if (data == null) {
return;
} }
var url = "/admin/org/edit.do?id="+data.id; var url = "/admin/org/edit.do?id=" + data.id;
Common.openDlg(url,"用户管理>编辑"); Common.openDlg(url, "用户管理>编辑");
}, },
del : function() { del: function () {
layui.use(['del'], function(){ layui.use(['del'], function () {
var delView = layui.del var delView = layui.del;
delView.delBatch(); delView.delBatch();
}); });
}, },
orgUser : function() { orgUser: function () {
var data = Common.getOneFromTable(table,"orgTable"); var data = Common.getOneFromTable(treeGrid, "orgTable");
if(data==null){ if (data == null) {
return ; return;
} }
var url = "/admin/org/user/list.do?orgId="+data.id; var url = "/admin/org/user/list.do?orgId=" + data.id;
Common.openDlg(url,"组织管理>用户列表"); Common.openDlg(url, "组织管理>用户列表");
} }
}; };
$('.ext-toolbar').on('click', function() { $('.ext-toolbar').on('click', function () {
var type = $(this).data('type'); var type = $(this).data('type');
toolbar[type] ? toolbar[type].call(this) : ''; toolbar[type] ? toolbar[type].call(this) : '';
}); });
} }
} };
exports('index',view); exports('index', view);
}); });
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment