| | |
| | | function ptzControl(command) { |
| | | // layer.msg('开始调用云台……', {icon: 1, time: 1200,offset:'rb'}); |
| | | const param = getParam(command, null); |
| | | const url = "../../basic/security/ptz-media"; |
| | | const url = "/security/ptz-media"; |
| | | sendControlCommand(url, param); |
| | | } |
| | | |
| | |
| | | //layer.msg('开始执行……', {icon: 1, time: 1200,offset:'rb'}); |
| | | const preset = $("#preset").val(); |
| | | const param = getParam(command, preset); |
| | | const url = "../../basic/security/ptz-media"; |
| | | const url = "/security/ptz-media"; |
| | | sendControlCommand(url, param); |
| | | } |
| | | |
| | |
| | | function moveStop() { |
| | | //layer.msg('开始调用云台……', {icon: 1, time: 1200,offset:'rb'}); |
| | | const param = getParam(0, null); |
| | | const url = "../../basic/security/ptz-media"; |
| | | const url = "/security/ptz-media"; |
| | | sendControlCommand(url, param); |
| | | } |
| | | |