porder.go 589 B

1234567891011121314151617181920212223242526272829
  1. package http
  2. import (
  3. "go-common/library/log"
  4. bm "go-common/library/net/http/blademaster"
  5. )
  6. func porderCfgList(c *bm.Context) {
  7. cfgList, err := vdpSvc.PorderCfgList(c)
  8. if err != nil {
  9. log.Error("vdpSvc.porderCfgList() error(%v)", err)
  10. c.JSON(nil, err)
  11. return
  12. }
  13. c.JSON(cfgList, nil)
  14. }
  15. func porderArcList(c *bm.Context) {
  16. params := c.Request.Form
  17. begin := params.Get("begin")
  18. end := params.Get("end")
  19. data, err := vdpSvc.PorderArcList(c, begin, end)
  20. if err != nil {
  21. log.Error("vdpSvc.PorderArcList() error(%v)", err)
  22. c.JSON(nil, err)
  23. return
  24. }
  25. c.JSON(data, nil)
  26. }