26 lines
463 B
JavaScript
26 lines
463 B
JavaScript
import request from '@/utils/request'
|
|
|
|
// 查询用户角色列表
|
|
|
|
export function getAccessToken() {
|
|
return request({
|
|
url: "/system/others/getAccessToken",
|
|
method: "post"
|
|
})
|
|
}
|
|
|
|
export function getLiveAddress(data) {
|
|
return request({
|
|
url: "/system/others/getLiveAddress",
|
|
method: "post",
|
|
data:data
|
|
})
|
|
}
|
|
|
|
export function getAccessTokenAndUrl(data) {
|
|
return request({
|
|
url: "/system/others/getAccessTokenAndUrl",
|
|
method: "post",
|
|
data:data
|
|
})
|
|
} |