seckill.js 1.15 KB
/**
 * 秒杀models
 * @author: 陈峰<feng.chen@yoho.cn>
 * @date: 2016/9/18
 */

'use strict';

const api = global.yoho.API;

/**
 * [获取秒杀时间栏接口]
 * @return {[object]}
 */
const queryActivity = () => {
    return api.get('', {
        method: 'app.seckill.queryActivity'
    });
};

/**
 * [获取指定秒杀活动商品列表接口]
 * @param  {[int]} activityId [秒杀活动id]
 * @param  {[int]} uid  only app use
 * @return {[object]}
 */
const queryProductList = (activityId) => {
    return api.get('', {
        method: 'app.seckill.queryProductList',
        activityId: activityId
    });
};

/**
 *   获取提醒 列表
 */
const queryRemindList = (activityId, uid) => {
    return api.get('', {
        method: 'app.seckill.queryRemindList',
        activityId,
        uid
    });
};

/**
 * 设置提醒
 */
const remind = (options) => {
    let url = '';
    let formData = Object.assign({
        method: !options.on_off ? 'app.seckill.cancelUserReminder' : 'app.seckill.addUserReminder',
    }, options);

    return api.get(url, formData);
};

module.exports = {
    queryActivity,
    queryProductList,
    queryRemindList,
    remind
};