附近小店
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

29 行
509 B

  1. package svc
  2. import (
  3. "applet/app/db"
  4. "applet/app/e"
  5. "applet/app/utils"
  6. "github.com/gin-gonic/gin"
  7. )
  8. func Cate(c *gin.Context) {
  9. storeId := c.GetHeader("store_id")
  10. if storeId == "" {
  11. storeId = "0"
  12. }
  13. cate := db.GetCate(MasterDb(c), storeId)
  14. cateList := make([]map[string]string, 0)
  15. if cate != nil {
  16. for _, v := range *cate {
  17. tmp := map[string]string{
  18. "id": utils.IntToStr(v.Id),
  19. "name": v.Title,
  20. }
  21. cateList = append(cateList, tmp)
  22. }
  23. }
  24. e.OutSuc(c, cateList, nil)
  25. return
  26. }