activity.service.js 369 B

12345678910111213
  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. }