operations.payment.js 688 Bytes
module.exports=function(app) {
    /*支付管理首页*/
    app.get("/operations/payment/index","operations.payment.Index", function () {
        this.$extend = {
            moduleName: "支付管理",
            pageName: "支付管理"
        }
    });

    app.post("/Payment/findPayManageList", "payment_findPayManageList");

    app.post("/Payment/findPayInfoById", "payment_findPayInfoById");

    app.post("/Payment/createPayMode", "payment_createPayMode");

    app.post("/Payment/updatePayInfoById", "payment_updatePayInfoById");

    app.post("/Payment/openPayModeById", "payment_openPayModeById");

    app.post("/Payment/closePayModeById", "payment_closePayModeById");
}