You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
333 B
20 lines
333 B
import request from '@/utils/requestUtil'
|
|
|
|
export function memberLogin(data) {
|
|
return request({
|
|
method: 'POST',
|
|
url: '/sso/login',
|
|
header: {
|
|
'content-type': 'application/x-www-form-urlencoded;charset=utf-8'
|
|
},
|
|
data: data
|
|
})
|
|
}
|
|
|
|
export function memberInfo() {
|
|
return request({
|
|
method: 'GET',
|
|
url: '/sso/info'
|
|
})
|
|
}
|