| 123456789101112131415 |
- 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-pad-apk-version', data)
- }
|