marketing.BrandCoupon.js
771 Bytes
/**
* Created by yoho on 2016/6/20.
*/
module.exports = function (app) {
/***********************************品牌优惠券*************************************/
//列表页
app.get("/brandCoupons/index", "marketing.BrandCoupon.Index",function(){
this.$extend={
moduleName:'营销管理',
pageName:'品牌优惠券'
}
});
//列表数据
app.post("/brandCoupon/queryList", "BrandCoupon_queryList");
//新增
app.post("/brandCoupon/add", "BrandCoupon_add");
//编辑
app.post("/brandCoupon/update", "BrandCoupon_update");
//删除
app.post("/brandCoupon/delete", "BrandCoupon_delete");
//单个
app.post("/brandCoupon/queryByParam", "BrandCoupon_queryByParam");
};