mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 23:39:36 +08:00
22 lines
366 B
JavaScript
22 lines
366 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: '/changyang_user_login/login',
|
|
method: "post",
|
|
data
|
|
});
|
|
}
|