1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| import fly from '@/common/bin/fly.js'
|
| class Login {
| loginPhone(params){
| return fly.post('/user/loginPhone',params)
| }
|
| getCode(params){
| return fly.post('/sms/SmsCode',params)
| }
|
| isCode(params){
| return fly.post('/user/isCode',params)
| }
|
| getHtmlContent(type){
| return fly.get('/common/html/getHtmlContent',{
| type
| })
| }
|
| wxLogin(params){
| return fly.post('/wxLogin',params)
| }
|
| yaoqPhoneRegistered(params){
| return fly.post('/user/yaoqPhoneRegistered',params)
| }
|
| wxLoginGetPhone(params){
| return fly.post('/wxLoginGetPhone',params)
| }
| }
| export default Login
|
|