1234567891011121314151617181920 |
- /**
- * 这是所有模块公用业务逻辑的服务
- */
- export default class PublicService {
- constructor(AjaxService) {
- Object.assign(this, { AjaxService })
- this.name = 'PublicService'
- }
- /**
- * 获取图形验证码
- * activateCodeType:机构 2 供应商 3 找回密码 1
- */
- GetAllAddressData (data = {}) {
- return this.AjaxService.get({
- url:'/club/address',
- data,
- isLoading: true ,
- })
- }
- }
|