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

module.exports = function (app) {

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

    //获取商品VIP列表
    app.post("/vip/queryProductVipList", "vip_queryProductVipList");

};