From b55ec70223cb8af0d59f868cbd5e8c53a53e47a3 Mon Sep 17 00:00:00 2001 From: 18516761980 <tqsxp@163.com> Date: 星期四, 06 十月 2022 15:47:32 +0800 Subject: [PATCH] # --- src/main/webapp/static/js/locMast/locMast.js | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 55 insertions(+), 1 deletions(-) diff --git a/src/main/webapp/static/js/locMast/locMast.js b/src/main/webapp/static/js/locMast/locMast.js index 1f3d18e..a823f63 100644 --- a/src/main/webapp/static/js/locMast/locMast.js +++ b/src/main/webapp/static/js/locMast/locMast.js @@ -25,12 +25,14 @@ ,{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: '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} @@ -231,6 +233,58 @@ }) }); 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; } }); -- Gitblit v1.9.1