var pageCurr; var tableData; var insTb2; layui.config({ base: baseUrl + "/static/layui/lay/modules/" }).extend({ dropdown: 'dropdown/dropdown', notice: 'notice/notice', }).use(['table','laydate', 'form', 'util', 'admin', 'dropdown', 'notice', 'treeTable', 'xmSelect'], function(){ var table = layui.table; var $ = layui.jquery; var layer = layui.layer; var layDate = layui.laydate; var form = layui.form; var admin = layui.admin; var util = layui.util; var notice = layui.notice; var treeTable = layui.treeTable; var xmSelect = layui.xmSelect; // 数据渲染 insTb2 = table.render({ elem: '#issueTable', headers: {token: localStorage.getItem('token')}, url: baseUrl+'/issue/list/auth', page: true, limit: 15, limits: [15, 30, 50, 100, 200, 500], toolbar: '#issueToolbar', height: 'full-100', cols: [[ {type: 'checkbox'} ,{field: 'hostId$', align: 'center',title: '所属项目', templet: '#hostTpl', width: 130} ,{field: 'uuid', align: 'center',title: '故障编号', width: 180} ,{field: 'issueType$', align: 'center',title: '故障类型', templet: '#issueTypeTpl', width: 110} ,{field: 'title', align: 'center',title: '问题概述'} ,{field: 'reason', align: 'center',title: '故障原因', hide: true} ,{field: 'deal', align: 'center',title: '解决办法', hide: true} ,{field: 'files', align: 'center',title: '文件列表', hide: true} ,{field: 'img', align: 'center',title: '图片', hide: true} ,{field: 'startTime$', align: 'center',title: '发生日期', width: 120} ,{field: 'endTime$', align: 'center',title: '处理日期', hide: true} ,{field: 'lastTime$', align: 'center',title: '更新日期', hide: true} ,{field: 'discoverer', align: 'center',title: '发现人', hide: true} ,{field: 'tel', align: 'center',title: '联系方式', hide: true} ,{field: 'dealer', align: 'center',title: '供应商', hide: true} ,{field: 'settle$', align: 'center',title: '流程', templet: '#settleTpl', width: 110} ,{field: 'status$', align: 'center',title: '状态', hide: true} ,{field: 'createBy$', align: 'center',title: '添加人员', hide: true} ,{field: 'createTime$', align: 'center',title: '添加时间', hide: true} ,{field: 'updateBy$', align: 'center',title: '修改人员', hide: true} ,{field: 'updateTime$', align: 'center',title: '修改时间', hide: true} ,{field: 'memo', align: 'center',title: '备注', hide: true} ,{fixed: 'right', title:'操作', align: 'center', toolbar: '#operate', width:150} ]], request: { pageName: 'curr', pageSize: 'limit' }, parseData: function (res) { return { 'code': res.code, 'msg': res.msg, 'count': res.data.total, 'data': res.data.records } }, response: { statusCode: 200 }, done: function(res, curr, count) { if (res.code === 403) { top.location.href = baseUrl+"/"; } pageCurr=curr; // limit(); } }); // 监听头工具栏事件 table.on('toolbar(issueTable)', function (obj) { var checkStatus = table.checkStatus(obj.config.id).data; switch(obj.event) { case 'del': if (checkStatus.length === 0) { layer.msg('请选择要删除的数据', {icon: 2}); return; } var ids = checkStatus.map(function (d) { return d.id; }); del(ids); break; } }); // 监听行工具事件 table.on('tool(issueTable)', function(obj){ var data = obj.data; switch (obj.event) { case 'detl': top.issueByDetl = data.id; break; case 'edit': showEditModel(data); break; case "del": var ids = [data.id]; del(ids); break; } }); /* 弹窗 - 新增、修改 */ function showEditModel(mData) { admin.open({ type: 1, area: '600px', title: (mData ? '修改' : '添加') + '订单状态', content: $('#editDialog').html(), success: function (layero, dIndex) { layDateRender(); form.val('detail', mData); form.on('submit(editSubmit)', function (data) { var loadIndex = layer.load(2); $.ajax({ url: baseUrl+"/issue/"+(mData?'update':'add')+"/auth", headers: {'token': localStorage.getItem('token')}, data: data.field, method: 'POST', success: function (res) { layer.close(loadIndex); if (res.code === 200){ layer.close(dIndex); layer.msg(res.msg, {icon: 1}); tableReload(); } else if (res.code === 403){ top.location.href = baseUrl+"/"; }else { layer.msg(res.msg, {icon: 2}); } } }) return false; }); $(layero).children('.layui-layer-content').css('overflow', 'visible'); layui.form.render('select'); } }); } /* 删除 */ function del(ids) { layer.confirm('确定要删除选中数据吗?', { skin: 'layui-layer-admin', shade: .1 }, function (i) { layer.close(i); var loadIndex = layer.load(2); $.ajax({ url: baseUrl+"/issue/delete/auth", headers: {'token': localStorage.getItem('token')}, data: {ids: ids}, method: 'POST', success: function (res) { layer.close(loadIndex); if (res.code === 200){ layer.msg(res.msg, {icon: 1}); $(".layui-laypage-btn")[0].click(); } else if (res.code === 403){ top.location.href = baseUrl+"/"; } else { layer.msg(res.msg, {icon: 2}); } } }) }); } // 搜索 form.on('submit(search)', function (data) { pageCurr = 1; tableReload(false); }); // 重置 form.on('submit(reset)', function (data) { pageCurr = 1; clearFormVal($('#search-box')); tableReload(false); }); // 时间选择器 function layDateRender() { layDate.render({ elem: '#startTime\\$', type: 'datetime' }); layDate.render({ elem: '#endTime\\$', type: 'datetime' }); layDate.render({ elem: '#lastTime\\$', type: 'datetime' }); layDate.render({ elem: '#createTime\\$', type: 'datetime' }); layDate.render({ elem: '#updateTime\\$', type: 'datetime' }); } layDateRender(); }); // 关闭动作 $(document).on('click','#data-detail-close', function () { parent.layer.closeAll(); }); function tableReload(child) { var searchData = {}; $.each($('#search-box [name]').serializeArray(), function() { searchData[this.name] = this.value; }); tableIns.reload({ where: searchData, page: {curr: pageCurr} }); }