| | |
| | | html { |
| | | overflow: hidden; |
| | | } |
| | | body { |
| | | overflow: hidden; |
| | | } |
| | | /* 导航 */ |
| | | .nav { |
| | | background-color: #fff; /*todo*/ |
| | |
| | | // 系统运行开关 |
| | | function systemSwitch() { |
| | | if (systemRunning){ |
| | | var confirm = layer.confirm('确定关闭 WCS 系统?!', { |
| | | btn: ['确定','取消'] |
| | | }, function(){ |
| | | layer.close(confirm); |
| | | layer.prompt({title: '请输入口令,并停止 WCS 系统', formType: 1}, function(pass, idx){ |
| | | layer.close(idx); |
| | | if ("123"!==pass){ |
| | | alert("口令错误"); |
| | | return; |
| | | } |
| | | var index = null; |
| | | index = layer.load(1, { |
| | | shade: [0.1,'#fff'] |
| | |
| | | } |
| | | layer.close(index); |
| | | }, 2000); |
| | | }, function(){ |
| | | |
| | | }); |
| | | |
| | | } else { |
| | | var index = null; |
| | | index = layer.load(1, { |
| | |
| | | } |
| | | } |
| | | |
| | | // 货架点击事件 |
| | | $('.item').on('click', function () { |
| | | layer.open({ |
| | | type: 1, |
| | | shadeClose: true, //点击遮罩关闭层 |
| | | content: 'text' |
| | | }); |
| | | }); |
| | | |
| | | </script> |
| | | </html> |