mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2025-12-13 12:39:58 +08:00
提交新项目
This commit is contained in:
14
shop/routers/router.go
Normal file
14
shop/routers/router.go
Normal 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")
|
||||
}
|
||||
Reference in New Issue
Block a user