| 123456789101112131415161718192021222324252627282930313233 |
- import https from '@/plugins/luch-request_0.0.7/request'
- //本机号码一键登录
- export const phoneLogin = data => {
- return https.get('/auth/phone-login', data)
- }
- //手机号快捷登录 shish 20210121
- export const wxMobileLogin = data => {
- return https.post("/auth/wx-mobile-login", data)
- }
- export const getApkVersion = data => {
- return https.get('/auth/get-apk-version', data)
- }
- export const getMobile = data => {
- return https.post("/auth/get-mobile", data)
- }
- export const getNickname = data => {
- return https.post('/auth/get-nickname', data)
- }
- //服务协议
- export const getRegisterAgreement = data => {
- return https.get('/auth/register', data)
- }
- //隐私协议
- export const getPrivacyAgreement = data => {
- return https.get('/auth/privacy', data)
- }
|