user.service.js 470 B

1234567891011121314151617
  1. /**
  2. * 这是用户业务逻辑的服务
  3. */
  4. export default class UserService {
  5. constructor(AjaxService) {
  6. Object.assign(this, { AjaxService })
  7. this.name = 'UserService'
  8. }
  9. /* 初始化查询用户是否为正常用户 */
  10. appSelectLoginUser (data = {}) {
  11. return this.AjaxService.post({ url:'', data, isLoading: true })
  12. }
  13. /* 微信获取用户手机号登录 */
  14. LoginUsers (data = {}) {
  15. return this.AjaxService.post({ url:'', data, isLoading: true })
  16. }
  17. }