index.js 1.54 KB
/**
 * Created by yoho on 2016/6/20.
 * 搜索词管理
 */

module.exports = function (app) {

    /*************************************搜索词管理*************************************/
    //列表页
    app.get("/operations/terms/index", "searchWords.SearchWords.Index",function(){
        this.$extend={
            moduleName:'搜索词管理',
            pageName:'品牌热搜词'
        }
    });

    //获取所有搜索词
    app.post("/operation/terms/searchWordsList", "searchWords_querySearchWords");

    //添加搜索词信息
    app.post("/operations/terms/add", "searchWords_addSearchWords");

    //编辑搜索词信息
    app.post("/operations/terms/modify", "searchWords_updateSearchWords");

    /*************************************品牌热搜词*************************************/
    //列表页
    app.get("/hotSearchBrand/index", "searchWords.HotBrand.Index",function(){
        this.$extend={
            moduleName:'搜索词管理',
            pageName:'品牌热搜词'
        }
    });

    //获取所有搜索词
    app.post("/hotSearchBrand/queryHotBrandList", "searchWords_queryHotBrandList");

    //添加搜索词信息
    app.post("/hotSearchBrand/addHotBrand", "searchWords_addHotBrand");

    //编辑搜索词信息
    app.post("/hotSearchBrand/updateHotBrand", "searchWords_updateHotBrand");

    //删除搜索词信息
    app.post("/hotSearchBrand/delHotBrand", "searchWords_delHotBrand");
    
    //查询单个搜索词信息
    app.post("/hotSearchBrand/queryHotBrand", "searchWords_queryHotBrand");

};