1234567891011121314151617 |
- /**
- * 这是活动页相关的业务逻辑的服务
- */
- export default class ActivityService {
- constructor(AjaxService) {
- Object.assign(this, { AjaxService })
- this.name = 'ActivityService'
- }
- /* 小程序支付-活动接口 */
- GetRepeatActivityBrandList (data = {}) {
- return this.AjaxService.get({ url:'/repeat/activityProduct', data, isLoading: true })
- }
- /* 美博会 活动楼层 */
- GetRepeatActivityFloorData (data = {}) {
- return this.AjaxService.get({ url:'/activity/data', data, isLoading: true })
- }
- }
|