public.service.js 421 B

1234567891011121314151617181920
  1. /**
  2. * 这是所有模块公用业务逻辑的服务
  3. */
  4. export default class PublicService {
  5. constructor(AjaxService) {
  6. Object.assign(this, { AjaxService })
  7. this.name = 'PublicService'
  8. }
  9. /**
  10. * 获取图形验证码
  11. * activateCodeType:机构 2 供应商 3 找回密码 1
  12. */
  13. GetAllAddressData (data = {}) {
  14. return this.AjaxService.get({
  15. url:'/club/address',
  16. data,
  17. isLoading: true ,
  18. })
  19. }
  20. }