mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 22:29:36 +08:00
20 lines
356 B
JavaScript
20 lines
356 B
JavaScript
import {
|
|
request
|
|
} from '../../selfRequest';
|
|
|
|
// 微信登录接口
|
|
export function companyRq(data) {
|
|
return request({
|
|
url: '/api/visitor/list',
|
|
method: "get"
|
|
});
|
|
}
|
|
|
|
// 注册用户
|
|
export function registerPhone(data) {
|
|
return request({
|
|
url: '/social_user_login/login',
|
|
method: "post",
|
|
data
|
|
});
|
|
} |