mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 21:19:37 +08:00
21 lines
362 B
JavaScript
21 lines
362 B
JavaScript
![]() |
import {
|
||
|
request
|
||
|
} from '../selfRequest';
|
||
|
|
||
|
// 微信登录接口
|
||
|
export function loginRq(data) {
|
||
|
return request({
|
||
|
url: '/weixin/login',
|
||
|
method: "post",
|
||
|
data
|
||
|
});
|
||
|
}
|
||
|
|
||
|
// 注册用户
|
||
|
export function registerPhone(data) {
|
||
|
return request({
|
||
|
url: '/social_user_login/login',
|
||
|
method: "post",
|
||
|
data
|
||
|
});
|
||
|
}
|