From b801c53e1875c7f7fa1af0ca8b488b380213d1c8 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期一, 25 四月 2022 15:53:13 +0800 Subject: [PATCH] # --- src/main/webapp/static/js/order/order.js | 51 ++++++++++++++++++++++----------------------------- 1 files changed, 22 insertions(+), 29 deletions(-) diff --git a/src/main/webapp/static/js/order/order.js b/src/main/webapp/static/js/order/order.js index 6c09dda..d93bbe8 100644 --- a/src/main/webapp/static/js/order/order.js +++ b/src/main/webapp/static/js/order/order.js @@ -100,7 +100,7 @@ {type: 'numbers'}, {field: 'matnr', title: '鍟嗗搧缂栫爜'}, {field: 'maktx', title: '鍟嗗搧鍚嶇О', width: 160}, - {field: 'batch', title: '鎵瑰彿'}, + {field: 'batch', title: '搴忓垪鐮�'}, {field: 'anfme', title: '鏁伴噺'}, {field: 'qty', title: '浣滀笟鏁伴噺', style: 'font-weight: bold'}, {field: 'unit', title: '鍗曚綅'}, @@ -207,7 +207,7 @@ {type: 'numbers', title: '#'}, {field: 'matnr', title: '鍟嗗搧缂栫爜', width: 160}, {field: 'maktx', title: '鍟嗗搧鍚嶇О', width: 200}, - {field: 'batch', title: '鎵瑰彿', edit: true}, + {field: 'batch', title: '搴忓垪鐮�', edit: true}, {field: 'specs', title: '瑙勬牸'}, {field: 'anfme', title: '鏁伴噺(淇敼)', style: 'color: blue;font-weight: bold', edit: true, minWidth: 110, width: 110}, // {field: 'inQty', title: '宸插叆搴撻噺', minWidth: 100, width: 100}, @@ -290,41 +290,34 @@ admin.open({ type: 1, offset: '150px', - area: '480px', + area: '680px', title: (exp ? '淇敼' : '娣诲姞') + '鏄庣粏', content: $('#matEditDialog').html(), success: function (layero, dIndex) { - $(layero).children('.layui-layer-content').css('overflow', 'visible'); // 鍥炴樉鏁版嵁 form.val('matEditForm', exp); // 琛ㄥ崟鎻愪氦浜嬩欢 form.on('submit(matEditSubmit)', function (data) { - var existMats = []; - xxDataList.forEach(function(elem) { - existMats.push(elem.matNo); - }); - var selectList = matXmSelect.getValue(); - for (var i = 0; i<selectList.length; i++) { - var item = selectList[i]; - if (existMats.indexOf(item.value) === -1) { - // 鏌ヨ鐗╂枡璇︽儏 - $.ajax({ - url: baseUrl+"/mat/covert/"+item.value+"/auth", - headers: {'token': localStorage.getItem('token')}, - method: 'GET', - async: false, - success: function (res) { - if (res.code === 200){ - xxDataList.push(res.data); - insTbSSXM.reload({data: xxDataList, page: {curr: 1}}); - } else if (res.code === 403){ - top.location.href = baseUrl+"/"; - }else { - layer.msg(res.msg, {icon: 2}) - } + let selectList = matXmSelect.getValue(); + for (let i = 0; i<selectList.length; i++) { + let item = selectList[i]; + // 鏌ヨ鐗╂枡璇︽儏 + $.ajax({ + url: baseUrl+"/mat/covert/"+item.value+"/auth", + headers: {'token': localStorage.getItem('token')}, + method: 'GET', + async: false, + success: function (res) { + if (res.code === 200){ + xxDataList.push(res.data); + insTbSSXM.reload({data: xxDataList, page: {curr: 1}}); + } else if (res.code === 403){ + top.location.href = baseUrl+"/"; + }else { + layer.msg(res.msg, {icon: 2}) } - }) - } + } + }) } layer.close(dIndex); return false; -- Gitblit v1.9.1