mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 07:19:37 +08:00
22 lines
344 B
JavaScript
22 lines
344 B
JavaScript
import {
|
|
request
|
|
} from '../selfRequest';
|
|
|
|
|
|
// 用户信息
|
|
export function userProfile(id) {
|
|
return request({
|
|
url: '/user/profile?id=' + id,
|
|
method: "get",
|
|
});
|
|
}
|
|
|
|
// 用户信息
|
|
export function getUserInfoRq(id) {
|
|
return request({
|
|
url: '/wx/getUserInfo?userId=' + id,
|
|
method: "get",
|
|
});
|
|
}
|
|
|