From a84052e14cd5db392846283e9421fa80f05a39eb Mon Sep 17 00:00:00 2001 From: Junjie <fallin.jie@qq.com> Date: 星期二, 10 十月 2023 14:16:55 +0800 Subject: [PATCH] # --- src/main/webapp/static/js/plan/plan.js | 44 +++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 41 insertions(+), 3 deletions(-) diff --git a/src/main/webapp/static/js/plan/plan.js b/src/main/webapp/static/js/plan/plan.js index 02f119f..3af7f75 100644 --- a/src/main/webapp/static/js/plan/plan.js +++ b/src/main/webapp/static/js/plan/plan.js @@ -165,13 +165,13 @@ ,{field: 'settle$', align: 'center',title: '杩涘害', width: 150} // ,{field: 'settleMsg', align: 'center',title: '瀹℃牳杩涘害'} // ,{field: 'comment', align: 'center',title: '璇勮'} - // ,{field: 'status$', align: 'center',title: '鐘舵��'} + ,{field: 'status$', align: 'center',title: '鐘舵��'} ,{field: 'createTime$', align: 'left',title: '娣诲姞鏃ユ湡', width: 160, hide: true} ,{field: 'updateBy$', align: 'left',title: '淇敼浜�', width: 100} ,{field: 'updateTime$', align: 'left',title: '淇敼鏃堕棿', hide: true} ,{field: 'memo', align: 'left',title: '娉ㄩ噴', hide: true} - ,{fixed: 'right', title:'鎿嶄綔', align: 'center', toolbar: '#operate', width: 280} + ,{fixed: 'right', title:'鎿嶄綔', align: 'center', toolbar: '#operate', width: 340} ]], request: { pageName: 'curr', @@ -477,7 +477,7 @@ }, function (i) { layer.close(i); // 鎸囧畾瑙勫垝鍛� - if (data.settle === 2) { + if (data.settle === 1) { admin.open({ type: 1, area: '300px', @@ -529,6 +529,17 @@ } else { approval(data.id); } + }); + break; + case 'approvalEnd': + layer.confirm('瀹℃壒鎷掔粷锛�', { + skin: 'layui-layer-admin', + shade: .1, + offset: '200px', + title: data.name + }, function (i) { + layer.close(i); + approvalEnd(data.id); }); break; case 'edit': @@ -657,6 +668,33 @@ }) } + function approvalEnd(planId, plannerId, dIdx) { + let loadIndex = layer.load(2); + $.ajax({ + url: baseUrl+"/plan/approvalEnd/auth", + headers: {'token': localStorage.getItem('token')}, + data: { + planId: planId, + plannerId: plannerId + }, + method: 'POST', + success: function (res) { + if (dIdx) { + layer.close(dIdx); + } + layer.close(loadIndex); + if (res.code === 200){ + layer.msg(res.msg, {icon: 1}); + tableReload(); + } else if (res.code === 403){ + top.location.href = baseUrl+"/"; + } else { + layer.msg(res.msg, {icon: 2}); + } + } + }) + } + /* 寮圭獥 - 鏂板銆佷慨鏀� */ function showEditModel(mData) { let loadIndex = layer.load(2); -- Gitblit v1.9.1