fix
13404089107
6 天以前 2e90f57e7d28d6a949247ef39b487d3e75b56683
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