| | |
| | | var dept = [[${dept}]]; |
| | | var deptId = [[${deptId}]]; |
| | | var showDeptList = [[${showDeptList}]]; |
| | | var showDeptListTag = false; |
| | | if(lockscreen){window.top.location=ctx+"lockscreen";} |
| | | // 皮肤缓存 |
| | | var skin = storage.get("skin"); |
| | |
| | | * 弹出切换库区列表 |
| | | */ |
| | | function showDepotAreaSelect() { |
| | | if(showDeptListTag){ |
| | | return false; |
| | | } |
| | | if(showDeptList === "N"){ |
| | | return false; |
| | | } |
| | | showDeptListTag = true; |
| | | layer.open({ |
| | | type: 2, |
| | | title: '选择库区', |
| | |
| | | offset: ['50px', '1350px'], |
| | | shade: 0, |
| | | content: "com.fzzy.igds.SelectDept.d", |
| | | closeBtn: 1 |
| | | end: function(){ // 关闭层后的回调 |
| | | showDeptListTag = false; |
| | | } |
| | | }); |
| | | } |
| | | |