提交新项目

This commit is contained in:
kongyuebin
2019-12-19 14:47:58 +08:00
parent 7ba20ac1b9
commit f29066a984
609 changed files with 238892 additions and 0 deletions

14
shop/routers/router.go Normal file
View File

@@ -0,0 +1,14 @@
package routers
import (
"github.com/astaxie/beego"
"juhe/shop/controllers"
)
func init() {
beego.Router("/", &controllers.HomeAction{}, "*:ShowHome") //初始化首页
beego.Router("/pay.html", &controllers.PayController{}, "*:Pay")
beego.Router("/pay_requst.html", &controllers.ScanShopController{})
beego.Router("/scan.html", &controllers.ScanShopController{}, "*:ScanRender")
beego.Router("/error.html", &controllers.HomeAction{}, "*:ErrorPage")
}