activity.service.js 523 B

1234567891011121314151617
  1. /**
  2. * 这是活动页相关的业务逻辑的服务
  3. */
  4. export default class ActivityService {
  5. constructor(AjaxService) {
  6. Object.assign(this, { AjaxService })
  7. this.name = 'ActivityService'
  8. }
  9. /* 小程序支付-活动接口 */
  10. GetRepeatActivityBrandList (data = {}) {
  11. return this.AjaxService.get({ url:'/repeat/activityProduct', data, isLoading: true })
  12. }
  13. /* 美博会 活动楼层 */
  14. GetRepeatActivityFloorData (data = {}) {
  15. return this.AjaxService.get({ url:'/activity/data', data, isLoading: true })
  16. }
  17. }