1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- "use strict";
- const sheep_request_index = require("../../request/index.js");
- const CombinationApi = {
- // 获得拼团活动列表
- getCombinationActivityList: (count) => {
- return sheep_request_index.request({
- url: "/promotion/combination-activity/list",
- method: "GET",
- params: { count }
- });
- },
- // 获得拼团活动分页
- getCombinationActivityPage: (params) => {
- return sheep_request_index.request({
- url: "/promotion/combination-activity/page",
- method: "GET",
- params
- });
- },
- // 获得拼团活动明细
- getCombinationActivity: (id) => {
- return sheep_request_index.request({
- url: "/promotion/combination-activity/get-detail",
- method: "GET",
- params: {
- id
- }
- });
- },
- // 获得最近 n 条拼团记录(团长发起的)
- getHeadCombinationRecordList: (activityId, status, count) => {
- return sheep_request_index.request({
- url: "/promotion/combination-record/get-head-list",
- method: "GET",
- params: {
- activityId,
- status,
- count
- }
- });
- },
- // 获得我的拼团记录分页
- getCombinationRecordPage: (params) => {
- return sheep_request_index.request({
- url: "/promotion/combination-record/page",
- method: "GET",
- params
- });
- },
- // 获得拼团记录明细
- getCombinationRecordDetail: (id) => {
- return sheep_request_index.request({
- url: "/promotion/combination-record/get-detail",
- method: "GET",
- params: {
- id
- }
- });
- },
- // 获得拼团记录的概要信息
- getCombinationRecordSummary: () => {
- return sheep_request_index.request({
- url: "/promotion/combination-record/get-summary",
- method: "GET"
- });
- }
- };
- exports.CombinationApi = CombinationApi;
|