Files
his/openhis-ui-vue3/src/api/login.js
chenqi 5751c6941c fix(login): 修复登录相关接口注释乱码问题
- 修复登录方法注释中的乱码字符
- 修复注册方法注释中的乱码字符
- 修复获取用户详细信息注释中的乱码字符
- 修复退出方法注释中的乱码字符
- 修复获取验证码方法注释中的乱码字符
- 修复确保用户名存在验证逻辑注释中的乱码字符
- 修复获取当前登录用户所属科室注释中的乱码字符
- 修复切换科室注释中的乱码字符
- 修复医保签到注释中的乱码字符
- 更新锁屏解锁方法实现,改为验证登录状态而非密码验证
2026-06-04 12:12:18 +08:00

107 lines
2.6 KiB
JavaScript
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import request from '@/utils/request'
// 登录方法
export function login(username, password, code, uuid, tenantId) {
const data = {
username,
password,
code,
uuid,
tenantId
}
return request({
url: '/login',
headers: {
isToken: false,
repeatSubmit: false
},
method: 'post',
data: data
})
}
// 注册方法
export function register(data) {
return request({
url: '/register',
headers: {
isToken: false
},
method: 'post',
data: data
})
}
// 获取用户详细信息
export function getInfo() {
return request({
url: '/getInfo',
method: 'get'
})
}
// 退出方法
export function logout() {
return request({
url: '/logout',
method: 'post'
})
}
// 获取验证码
export function getUserBindTenantList(username) {
// 确保username存在ï¼Å避免构建出错误的URL
const safeUsername = username || '';
return request({
url: '/system/tenant/user-bind/' + safeUsername,
headers: {
isToken: false
},
method: 'get',
timeout: 20000
})
}
// 获取验证码
export function getCodeImg() {
return request({
url: '/captchaImage',
headers: {
isToken: false
},
method: 'get',
timeout: 20000
})
}
// 获取当前登录用户所属科室
export function getOrg() {
return request({
url: '/base-data-manage/practitioner/get-selectable-org-list',
method: 'get',
})
}
// 切换科室
export function switchOrg(orgId) {
return request({
url: '/base-data-manage/practitioner/switch-org?orgId=' + orgId,
method: 'put',
})
}
// 医保签到
export function sign(practitionerId, mac, ip) {
return request({
url: `/yb-request/sign?practitionerId=${practitionerId}&mac=${mac}&ip=${ip}`,
method: 'post',
})
}
// 锁屏解锁(验证登录状态)
export function unlockScreen(password) {
return request({
url: '/getInfo',
method: 'get'
})
}