From cd280ead41b98ee60154038e36d9b83cc25e7d16 Mon Sep 17 00:00:00 2001 From: lsh <1> Date: 星期三, 20 十二月 2023 12:55:25 +0800 Subject: [PATCH] # --- src/main/webapp/static/js/locMast/locMast.js | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 58 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/static/js/locMast/locMast.js b/src/main/webapp/static/js/locMast/locMast.js index 1f3d18e..c596ee2 100644 --- a/src/main/webapp/static/js/locMast/locMast.js +++ b/src/main/webapp/static/js/locMast/locMast.js @@ -25,12 +25,15 @@ ,{field: 'locSts$', align: 'center',title: '搴撲綅鐘舵��',width:200} ,{field: 'fireStatus$', align: 'center',title: '娑堥槻鐘舵��', hide:false} ,{field: 'packStatus$', align: 'center',title: '浜у搧鐘舵��', hide:false} + ,{field: 'locType1$', align: 'center',title: '搴撲綅绫诲瀷'} + ,{field: 'locType2$', align: 'center',title: '娴嬭瘯璁惧鍙�'} + ,{field: 'freeze$', align: 'center',title: '鍐荤粨鐘舵��'} // ,{field: 'whsType$', align: 'center',title: '搴撲綅绫诲瀷'} // ,{field: 'pltType', align: 'center',title: ''} // ,{field: 'ctnType', align: 'center',title: ''} // ,{field: 'locSts', align: 'center',title: ''} // ,{field: 'sheetNo', align: 'center',title: ''} - ,{field: 'crnNo', align: 'center',title: '鍫嗗灈鏈哄彿'} + // ,{field: 'crnNo', align: 'center',title: '鍫嗗灈鏈哄彿'} ,{field: 'row1', align: 'center',title: '鎺�', sort:true} ,{field: 'bay1', align: 'center',title: '鍒�', sort:true} ,{field: 'lev1', align: 'center',title: '灞�', sort:true} @@ -43,7 +46,7 @@ // ,{field: 'outEnable', align: 'center',title: ''} // ,{field: 'ioTime$', align: 'center',title: ''} // ,{field: 'firstTime$', align: 'center',title: ''} - ,{field: 'modiUser$', align: 'center',title: '淇敼浜哄憳', hide:true} + ,{field: 'ctnKind', align: 'center',title: '鍚姩鎸夐挳'} ,{field: 'modiTime$', align: 'center',title: '淇敼鏃堕棿', hide:true} // ,{field: 'appeUser$', align: 'center',title: '鍒涘缓鑰�',event: 'appeUser', style: 'text-decoration: underline;cursor:pointer'} // ,{field: 'appeTime$', align: 'center',title: '娣诲姞鏃堕棿'} @@ -230,6 +233,58 @@ layer.close(idx); }) }); + break; + case 'disableALL': + var data = checkStatus.data; + if (data.length !=8 ){ + layer.msg('璇烽�夋嫨姝よ澶囨墍鏈夋暟鎹啀杩涜绂佺敤鎿嶄綔'); + } else { + layer.confirm('纭畾绂佺敤'+(data.length===1?'姝�':data.length)+'鏉℃暟鎹悧', function(){ + $.ajax({ + url: baseUrl+"/locMast/disableALL/auth", + headers: {'token': localStorage.getItem('token')}, + data: {param: JSON.stringify(data)}, + method: 'POST', + traditional:true, + success: function (res) { + if (res.code === 200){ + layer.closeAll(); + tableReload(false); + } else if (res.code === 403){ + top.location.href = baseUrl+"/"; + } else { + layer.msg(res.msg) + } + } + }) + }); + } + break; + case 'openAll': + var data = checkStatus.data; + if (data.length !=8 ){ + layer.msg('璇烽�夋嫨姝よ澶囨墍鏈夋暟鎹啀杩涜鍚敤鎿嶄綔'); + } else { + layer.confirm('纭畾鍚敤'+(data.length===1?'姝�':data.length)+'鏉℃暟鎹悧', function(){ + $.ajax({ + url: baseUrl+"/locMast/openAll/auth", + headers: {'token': localStorage.getItem('token')}, + data: {param: JSON.stringify(data)}, + method: 'POST', + traditional:true, + success: function (res) { + if (res.code === 200){ + layer.closeAll(); + tableReload(false); + } else if (res.code === 403){ + top.location.href = baseUrl+"/"; + } else { + layer.msg(res.msg) + } + } + }) + }); + } break; } }); @@ -464,6 +519,7 @@ fireNo: $('#fireNo').val(), fireStatus: $('#fireStatus').val(), packStatus: $('#packStatus').val(), + freeze: $('#freeze').val(), }; $.ajax({ url: baseUrl+"/locMast/"+name+"/auth", -- Gitblit v1.9.1