面包店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 rivejä
414 B

  1. package hdl
  2. import (
  3. "applet/app/e"
  4. "applet/app/ipad/svc"
  5. "github.com/gin-gonic/gin"
  6. )
  7. func OrderCate(c *gin.Context) {
  8. var res = []map[string]string{
  9. {"name": "全部", "id": ""},
  10. {"name": "待制作", "id": "0"},
  11. {"name": "制作中", "id": "1"},
  12. {"name": "待分拣", "id": "3"},
  13. {"name": "已完成", "id": "4"},
  14. }
  15. e.OutSuc(c, res, nil)
  16. return
  17. }
  18. func Order(c *gin.Context) {
  19. svc.Order(c)
  20. }