common.index.js
445 Bytes
module.exports=function(app) {
app.get("/login","common.Login");
app.get("/logout","common.Login");
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");
}