| | |
| | | var pageCurr; |
| | | layui.use(['table','laydate', 'form'], function() { |
| | | |
| | | layui.config({ |
| | | base: baseUrl + "/static/layui/lay/modules/" |
| | | }).use(['table','laydate', 'form', 'admin'], function() { |
| | | var table = layui.table; |
| | | var $ = layui.jquery; |
| | | var layer = layui.layer; |
| | | var layDate = layui.laydate; |
| | | var form = layui.form; |
| | | var admin = layui.admin; |
| | | |
| | | // 获取出库口 |
| | | function getOutBound(){ |
| | |
| | | $("#targetLocNo").empty(); |
| | | layui.form.render('select'); |
| | | } |
| | | |
| | | // // 库位状态获取 |
| | | // var tips; |
| | | // function locStatus(el) { |
| | | // let val = el.value; |
| | | // if (val === null|| val === ""){ |
| | | // return; |
| | | // } |
| | | // $.ajax({ |
| | | // url: baseUrl+"/locMast/"+val+"/auth", |
| | | // headers: {'token': localStorage.getItem('token')}, |
| | | // dataType:'json', |
| | | // method: 'POST', |
| | | // success: function (res) { |
| | | // if (res.code === 200) { |
| | | // var status; |
| | | // if (res.data != null) { |
| | | // status = res.data.locType$; |
| | | // } else { |
| | | // status = "未找到库位"; |
| | | // } |
| | | // tips = layer.tips( |
| | | // "<span style='color:#333;text-overflow: clip;'>"+status+"</span>", |
| | | // el, |
| | | // { |
| | | // tipsMore: true, |
| | | // area: ['160px'], |
| | | // tips: [3,'#fff'], |
| | | // time:0 |
| | | // ,maxWidth:500 |
| | | // }); |
| | | // } else if (res.code === 403) { |
| | | // top.location.href = baseUrl+"/"; |
| | | // } else { |
| | | // layer.msg(res.msg); |
| | | // } |
| | | // } |
| | | // }); |
| | | // } |