新增锁定屏幕功能

This commit is contained in:
RuoYi
2020-12-08 15:35:24 +08:00
parent 832b1f4e14
commit fb480530c8
8 changed files with 1040 additions and 10 deletions

File diff suppressed because one or more lines are too long

View File

@ -480,6 +480,11 @@ $(function() {
$('#fullScreen').on('click', function () {
$(document).toggleFullScreen();
});
// 锁定屏幕
$('#lockScreen').on('click', function () {
location.href = ctx + "lockscreen";
});
// 页签刷新按钮
$('.tabReload').on('click', refreshTab);