matchWords.js
618 Bytes
/**
* Created by LiQZ
* 活动模板管理
*/
module.exports=function(app) {
/* 首页 */
app.get("/search/matchWords/index","search.matchWords.Index", "resourceManage_getUrlAction", function (response) {
this.$extend = {
actions:response.data,
moduleName: "搜索词管理",
pageName: "匹配词管理"
}
});
app.post("/search/matchWords/list", "matchWords_matchWordsList");
app.post("/search/matchWords/triggerStatus", "matchWords_matchWordsTriggerStatus");
app.post("/search/matchWords/save", "matchWords_matchWordsSaveOrUpdate");
}