user.service.js 378 B

1234567891011121314
  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:'/sso/AppletsloginUsers', data, isLoading: true ,json: false })
  12. }
  13. }