新增锁定屏幕功能

This commit is contained in:
RuoYi
2026-03-21 23:29:22 +08:00
parent b43048a589
commit 88c2e4979a
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({