common.index.js 501 Bytes

module.exports=function(app) {

	app.get("/login","common.Login");

    app.get("/logout","common.Login",function (req) {
        delete req.session.user;
    });
	
    app.post("/login", "common_login", function (login, req, res){
        if (login.code == 200) {
            res.myRedirect('/');
        } else { 
            res.myRedirect('/login');
        }
    });

	app.get("/","common.index");

    app.get("/error", "common.Error");

    app.get("/index/ajaxshop","common_changeShop");
}