123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- layui.use(['table', 'admin', 'ax', 'ztree'], function () {
- var $ = layui.$;
- var table = layui.table;
- var $ax = layui.ax;
- var admin = layui.admin;
- var $ZTree = layui.ztree;
- /**
- * 系统管理--部门管理
- */
- var Dept = {
- tableId: "deptTable",
- condition: {
- deptId: ""
- }
- };
- /**
- * 初始化表格的列
- */
- Dept.initColumn = function () {
- return [[
- {type: 'checkbox'},
- {field: 'deptId', hide: true, sort: true, title: 'id'},
- {field: 'simpleName', sort: true, title: '部门简称'},
- {field: 'fullName', sort: true, title: '部门全称'},
- {field: 'sort', sort: true, title: '排序'},
- {field: 'description', sort: true, title: '备注'},
- {align: 'center', toolbar: '#tableBar', title: '操作', minWidth: 200}
- ]];
- };
- /**
- * 点击查询按钮
- */
- Dept.search = function () {
- var queryData = {};
- queryData['condition'] = $("#name").val();
- queryData['deptId'] = Dept.condition.deptId;
- table.reload(Dept.tableId, {where: queryData});
- };
- /**
- * 选择部门时
- */
- Dept.onClickDept = function (e, treeId, treeNode) {
- Dept.condition.deptId = treeNode.id;
- Dept.search();
- };
- /**
- * 弹出添加
- */
- Dept.openAddDept = function () {
- admin.putTempData('formOk', false);
- top.layui.admin.open({
- type: 2,
- title: '添加部门',
- content: Feng.ctxPath + '/dept/dept_add',
- end: function () {
- admin.getTempData('formOk') && table.reload(Dept.tableId);
- }
- });
- };
- /**
- * 导出excel按钮
- */
- Dept.exportExcel = function () {
- var checkRows = table.checkStatus(Dept.tableId);
- if (checkRows.data.length === 0) {
- Feng.error("请选择要导出的数据");
- } else {
- table.exportFile(tableResult.config.id, checkRows.data, 'xls');
- }
- };
- /**
- * 点击编辑部门
- *
- * @param data 点击按钮时候的行数据
- */
- Dept.onEditDept = function (data) {
- admin.putTempData('formOk', false);
- top.layui.admin.open({
- type: 2,
- title: '修改部门',
- content: Feng.ctxPath + '/dept/dept_update?deptId=' + data.deptId,
- end: function () {
- admin.getTempData('formOk') && table.reload(Dept.tableId);
- }
- });
- };
- /**
- * 点击删除部门
- *
- * @param data 点击按钮时候的行数据
- */
- Dept.onDeleteDept = function (data) {
- var operation = function () {
- var ajax = new $ax(Feng.ctxPath + "/dept/delete", function () {
- Feng.success("删除成功!");
- table.reload(Dept.tableId);
- }, function (data) {
- Feng.error("删除失败!" + data.responseJSON.message + "!");
- });
- ajax.set("deptId", data.deptId);
- ajax.start();
- };
- Feng.confirm("是否删除部门 " + data.simpleName + "?", operation);
- };
- // 渲染表格
- var tableResult = table.render({
- elem: '#' + Dept.tableId,
- url: Feng.ctxPath + '/dept/list',
- page: true,
- height: "full-158",
- cellMinWidth: 100,
- cols: Dept.initColumn()
- });
- //初始化左侧部门树
- var ztree = new $ZTree("deptTree", "/dept/tree");
- ztree.bindOnClick(Dept.onClickDept);
- ztree.init();
- // 搜索按钮点击事件
- $('#btnSearch').click(function () {
- Dept.search();
- });
- // 添加按钮点击事件
- $('#btnAdd').click(function () {
- Dept.openAddDept();
- });
- // 导出excel
- $('#btnExp').click(function () {
- Dept.exportExcel();
- });
- // 工具条点击事件
- table.on('tool(' + Dept.tableId + ')', function (obj) {
- var data = obj.data;
- var layEvent = obj.event;
- if (layEvent === 'edit') {
- Dept.onEditDept(data);
- } else if (layEvent === 'delete') {
- Dept.onDeleteDept(data);
- }
- });
- });
|