From 7172b5a4db6cf3202566a85f5dbb92bb117aa659 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期三, 17 六月 2020 13:49:14 +0800 Subject: [PATCH] # --- src/main/webapp/static/js/basDevp/basDevp.js | 33 +++++++++++++++++++++++++++++++-- 1 files changed, 31 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/static/js/basDevp/basDevp.js b/src/main/webapp/static/js/basDevp/basDevp.js index 4f52192..9d60063 100644 --- a/src/main/webapp/static/js/basDevp/basDevp.js +++ b/src/main/webapp/static/js/basDevp/basDevp.js @@ -74,7 +74,7 @@ html += ">"; return html; }} - ,{field: 'wrkNo', align: 'center',title: '宸ヤ綔鍙�'} + ,{field: 'wrkNo', align: 'center',title: '宸ヤ綔鍙�', edit: true, style:'color: blue;font-weight: bold'} // ,{field: 'wrkNo1', align: 'center',title: ''} ,{field: 'ctnType', align: 'center',title: '瀹瑰櫒绫诲瀷'} ,{field: 'barcode', align: 'center',title: '鏉″舰鐮�'} @@ -126,6 +126,35 @@ } }); } + }); + + // 椤甸潰淇敼 + table.on('edit(basDevp)', function (obj) { + if (isNaN(obj.value)) { + layer.msg("璇疯緭鍏ユ暟瀛�"); + tableReload(); + return; + } + console.log(obj); + $.ajax({ + url: baseUrl+"/basDevp/update/auth", + headers: {'token': localStorage.getItem('token')}, + data: top.reObject({ + devNo: obj.data.devNo, + wrkNo: obj.value + }), + method: 'POST', + success: function (res) { + if (res.code === 200){ + tableReload(); + layer.msg(res.msg); + } else if (res.code === 403){ + top.location.href = baseUrl+"/"; + }else { + layer.msg(res.msg) + } + } + }) }); // 鐩戝惉鎺掑簭浜嬩欢 @@ -206,7 +235,7 @@ } break; case 'exportData': - layer.confirm('纭畾瀵煎嚭Excel鍚�', function(){ + layer.confirm('纭畾瀵煎嚭Excel鍚�', {shadeClose: true}, function(){ var titles=[]; var fields=[]; obj.config.cols[0].map(function (col) { -- Gitblit v1.9.1