From 509f02a9ec89a15f20015910c31d06c3b5200000 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@63.com> Date: 星期一, 21 十一月 2022 14:24:52 +0800 Subject: [PATCH] # --- src/main/webapp/static/js/plan/plan.js | 111 +++++++++++++++++++++++++++++++++++++++++++++---------- 1 files changed, 90 insertions(+), 21 deletions(-) diff --git a/src/main/webapp/static/js/plan/plan.js b/src/main/webapp/static/js/plan/plan.js index 652771d..0144987 100644 --- a/src/main/webapp/static/js/plan/plan.js +++ b/src/main/webapp/static/js/plan/plan.js @@ -19,6 +19,7 @@ var cascader = layui.cascader; var tree = layui.tree; var dropdown = layui.dropdown; + var element = layui.element; $('#organization').html(localStorage.getItem('nickname') + ' <i class="layui-icon"></i>'); @@ -148,7 +149,7 @@ ,{field: 'uuid', align: 'center',title: '瑙勫垝鍗曚唬鍙�'} ,{field: 'appleTime$', align: 'center',title: '鐢宠鏃ユ湡'} // ,{field: 'beItem$', align: 'center',title: '绔嬮」'} - ,{field: 'planner', align: 'center',title: '瑙勫垝鍛�'} + ,{field: 'planner', align: 'center',title: '瑙勫垝鍛�', templet:function(d){return emptyShow(d.planner)}} // ,{field: 'finishTime$', align: 'center',title: '瀹屾垚鏃堕棿'} // ,{field: 'form', align: 'center',title: '琛ㄥ崟鍐呭'} // ,{field: 'change$', align: 'center',title: '鏇存敼鏂规'} @@ -193,7 +194,94 @@ // 娣诲姞 $("#planAddBtn").click(function () { - showEditModel(); + let loadIndex = layer.load(2); + $.ajax({ + url: baseUrl+"/planType/list/radio/auth", + headers: {'token': localStorage.getItem('token')}, + method: 'POST', + success: function (res) { + if (res.code === 200){ + admin.open({ + type: 1, + area: '300px', + title: '鏂板缓鍞墠瑙勫垝鐢宠鍗�', + content: $('#addDialogPre').html(), + success: function (layero, dIndex) { + let template = Handlebars.compile($('#planTypeTpl').html()); + $('#planTypeBox').html(template({list: res.data.map(function (d) { + return { + id: d.id, + name: d.name, + checked: d.checked + } + })}) + ); + element.init();form.render(); + layer.close(loadIndex); + // 纭瑙勫垝鍗曠被鍨� + form.on('submit(planTypeSubmit)', function (data) { + layer.close(dIndex); + let planTypeId = data.field.planType; + let loadIndex0 = layer.load(2); + $.ajax({ + url: baseUrl + "/planType/" + planTypeId + "/auth", + headers: {'token': localStorage.getItem('token')}, + method: 'GET', + success: function (res0) { + let planType = res0.data; + if (res0.code === 200) { + admin.open({ + type: 1, + area: '600px', + title: '娣诲姞鍞墠瑙勫垝鐢宠鍗�' + ' - ' + planType.name, + content: $('#editDialog').html(), + success: function (layero0, dIndex0) { + layer.close(loadIndex0); + layDateRender(); + form.on('submit(editSubmit)', function (data) { + var loadIndex = layer.load(2); + $.ajax({ + url: baseUrl+"/plan/"+(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(dIndex0); + 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'); + } + }); + } else if (res0.code === 403) { + top.location.href = baseUrl + "/"; + } else { + layer.msg(res0.msg, {icon: 2}); + } + } + }) + return false; + }); + } + }) + } else if (res.code === 403){ + top.location.href = baseUrl+"/"; + } else { + layer.msg(res.msg, {icon: 2}); + } + } + }) }); // 鍒犻櫎 @@ -220,25 +308,6 @@ where: searchData, page: {curr: 1} }); - }); - - // 鐩戝惉澶村伐鍏锋爮浜嬩欢 - table.on('toolbar(plan)', function (obj) { - var checkStatus = table.checkStatus(obj.config.id).data; - switch(obj.event) { - case 'addData': - showEditModel(); - break; - case 'deleteData': - if (checkStatus.length === 0) { - layer.msg('璇烽�夋嫨瑕佸垹闄ょ殑鏁版嵁', {icon: 2}); - return; - } - del(checkStatus.map(function (d) { - return d.id; - })); - break; - } }); // 鐩戝惉琛屽伐鍏蜂簨浠� -- Gitblit v1.9.1