新增锁定屏幕功能

This commit is contained in:
RuoYi
2026-03-20 20:37:07 +08:00
parent 761af45ec6
commit f1cf8e44c1
9 changed files with 479 additions and 0 deletions

View File

@@ -39,6 +39,15 @@ export function getInfo() {
})
}
// 解锁屏幕
export function unlockScreen(password) {
return request({
url: '/unlockscreen',
method: 'post',
data: { password }
})
}
// 退出方法
export function logout() {
return request({