| | |
| | | } |
| | | ,yes: function(layerIndex, layero){ |
| | | // 立即出库按钮点击 → 先请求下拉列表 |
| | | let loadIndex = layer.load(10); |
| | | let loadIndex = layer.load(2); |
| | | $.ajax({ |
| | | url: baseUrl + "/getMesOrder/auth", // 你提供的接口 |
| | | headers: {'token': localStorage.getItem('token')}, |
| | |
| | | success: function(layero2, index2){ |
| | | // 渲染下拉框 |
| | | let select = $(layero2).find('#batchSelectStaBox'); |
| | | select.empty().append(`<option value="">请选择组货单号</option>`); // 保持默认空 |
| | | select.empty().append(`<option value="">请选择组货单号</option>`); |
| | | res.data.forEach(item => { |
| | | select.append(`<option value="${item}">${item}</option>`); |
| | | }); |
| | | layui.form.render('select'); // 重新渲染下拉框 |
| | | // 注意这里 select 要加 lay-search 属性 |
| | | select.attr("lay-search", ""); |
| | | layui.form.render('select'); |
| | | |
| | | |
| | | |
| | | // 确认按钮 |