unionType.unionType.js 752 Bytes
module.exports = function (app){
    app.get("/unionType/index", "unionType.index", function (req,res){
        this.$extend={
            moduleName:"联盟类型管理",
            pageName:"联盟类型管理"
        }
    });

    //列表
    app.post("/unionType/getUnionTypeList","unionType_getUnionTypeList");

    //获取单个
    app.post("/unionType/getUnionType","unionType_getUnionType");

    //添加
    app.post("/unionType/addUnionType","unionType_addUnionType");

    //修改
    app.post("/unionType/updateUnionType","unionType_updateUnionType");

    //修改状态
   /* app.post("/unionType/updateStatus","unionType_updateStatus");*/

    //列表
    app.post("/unionType/getUnionTypeUrls","unionType_getUnionTypeUrls");

}