router.go 2.1KB

12345678910111213141516171819202122232425262728293031323334
  1. package routers
  2. import (
  3. "gdyb/controllers/hb"
  4. "gdyb/controllers/js"
  5. "gdyb/controllers/sg"
  6. //"gdyb/controllers/sz"
  7. //"gdyb/controllers/sz"
  8. //admin_api "XT_New/controllers/admin_api_controllers"
  9. "github.com/astaxie/beego"
  10. "github.com/astaxie/beego/plugins/cors"
  11. )
  12. func init() {
  13. beego.InsertFilter("*", beego.BeforeRouter, cors.Allow(&cors.Options{
  14. //AllowAllOrigins: true,
  15. 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"},
  16. //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"},
  17. AllowMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"},
  18. AllowHeaders: []string{"Origin", "Authorization", "Access-Control-Allow-Origin", "Access-Control-Allow-Headers", "Content-Type", "X-XSRF-TOKEN", "Permission", "Content-Security-Policy"},
  19. ExposeHeaders: []string{"Content-Length", "Access-Control-Allow-Origin", "Access-Control-Allow-Headers", "Content-Type"},
  20. AllowCredentials: true,
  21. }))
  22. sg.HisManagerApiRegistRouters()
  23. sg.GdybRegistRouters()
  24. hb.HbybRegistRouters()
  25. //sz.SZHisManagerApiRegistRouters()
  26. //zh.ZHHisManagerApiRegistRouters()
  27. js.JSybRegistRouters()
  28. //nm.NmybRegistRouters()
  29. //coordinate.CoordinateRegistRouters()
  30. }