面包店
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

hdl_order.go 414 B

hace 8 meses
12345678910111213141516171819202122
  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. }