marketing.EventConfig.js 573 Bytes
/**
 * Created by zhaojun on 17/3/15.
 */

module.exports = function (app) {

    //列表页
    app.get("/market/eventConfig/index", "marketing.EventConfig.Index",function(){
        this.$extend={
            moduleName:'营销管理',
            pageName:'配置管理',
        }
    });

    //列表请求
    app.post("/eventConfig/queryList", "EventConfig_queryEventConfig");

    //详情请求
    app.post("/eventConfig/queryById", "EventConfig_getEventConfigById");

    //编辑请求
    app.post("/eventConfig/update", "EventConfig_updateEventConfig");

};