router.go 2.1KB

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