新增锁定屏幕功能

This commit is contained in:
RuoYi
2026-03-21 23:30:07 +08:00
parent 59392c7b35
commit 1eaf3a6ec7
12 changed files with 510 additions and 5 deletions

View File

@@ -25,6 +25,15 @@ export function register(data) {
})
}
// 解锁屏幕
export function unlockScreen(password) {
return request({
url: '/auth/unlockscreen',
method: 'post',
data: { password }
})
}
// 刷新方法
export function refreshToken() {
return request({