|
|
|
@ -9,10 +9,19 @@ export function governmentGetInfo(params) {
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getSingleLoginHtml() {
|
|
|
|
|
// 企业端跳转过来查看个人信息
|
|
|
|
|
export function singleSigngetInfo(params) {
|
|
|
|
|
return request({
|
|
|
|
|
url: '/system/singlelogin/login',
|
|
|
|
|
method: 'get',
|
|
|
|
|
responseType: 'text' // 确保以文本形式接收响应
|
|
|
|
|
}).then(res => res)
|
|
|
|
|
url: "/system/singlelogin/getInfo",
|
|
|
|
|
method: "get",
|
|
|
|
|
params
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
// 企业端退出登录
|
|
|
|
|
export function enterpriseLogout(params) {
|
|
|
|
|
return request({
|
|
|
|
|
url: "/system/singlelogin/enterpriseLogout",
|
|
|
|
|
method: "get",
|
|
|
|
|
params
|
|
|
|
|
})
|
|
|
|
|
}
|