1234567891011121314151617181920212223242526272829303132333435363738 |
- package routers
-
- import (
- "gdyb/controllers/coordinate"
- "gdyb/controllers/hb"
- "gdyb/controllers/js"
- "gdyb/controllers/nm"
- "gdyb/controllers/sg"
- "gdyb/controllers/zh"
-
- //"gdyb/controllers/sz"
- //"gdyb/controllers/sz"
- //admin_api "XT_New/controllers/admin_api_controllers"
- "github.com/astaxie/beego"
- "github.com/astaxie/beego/plugins/cors"
- )
-
- func init() {
- beego.InsertFilter("*", beego.BeforeRouter, cors.Allow(&cors.Options{
- //AllowAllOrigins: true,
- AllowOrigins: []string{"https://xt.kuyicloud.com", "http://localhost:9528", "http://localhost:9529", "http://localhost:9532", "http://localhost:9531", "http://localhost:9532", "http://xt.test.shengws.com", "http://new_mobile.test.sgjyun.com", "https://xt.test.shengws.com", "http://xt.test.sgjyun.com", "https://xt.test.sgjyun.com", "http://localhost:8081", "http://localhost:8082", "https://pad.kuyicloud.com", "http://pad.kuyicloud.com", "http://pad.test.sgjyun.com", "https://pad.test.sgjyun.com", "http://admin.xt.test.sgjyun.com", "http://admin.xt.kuyicloud.com", "http://mobile.sgjyun.com", "http://mobile.kuyicloud.com"},
- //AllowOrigins: []string{"https://xt.kuyicloud.com", "http://localhost:9528", "http://xt.test.shengws.com","https://xt.test.shengws.com", "http://xt.test.sgjyun.com","https://xt.test.sgjyun.com", "http://localhost:8081", "http://localhost:8082", "https://pad.kuyicloud.com", "http://pad.kuyicloud.com", "http://pad.test.sgjyun.com","https://pad.test.sgjyun.com", "http://admin.xt.test.sgjyun.com", "http://admin.xt.kuyicloud.com","http://mobile.sgjyun.com","http://mobile.kuyicloud.com"},
- AllowMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"},
- AllowHeaders: []string{"Origin", "Authorization", "Access-Control-Allow-Origin", "Access-Control-Allow-Headers", "Content-Type", "X-XSRF-TOKEN", "Permission", "Content-Security-Policy"},
- ExposeHeaders: []string{"Content-Length", "Access-Control-Allow-Origin", "Access-Control-Allow-Headers", "Content-Type"},
- AllowCredentials: true,
- }))
- sg.HisManagerApiRegistRouters()
- sg.GdybRegistRouters()
- hb.HbybRegistRouters()
- //sz.SZHisManagerApiRegistRouters()
- zh.ZHHisManagerApiRegistRouters()
- js.JSybRegistRouters()
- nm.NmybRegistRouters()
- coordinate.CoordinateRcegistRouters()
-
- }
|