附近小店
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.

преди 1 месец
преди 1 месец
преди 1 месец
преди 1 месец
преди 1 месец
12345678910111213141516171819202122232425262728293031323334
  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. if utils.StrToInt(storeId) > 0 {
  14. storeData := db.GetStoreIdEg(MasterDb(c), storeId)
  15. if storeData.StoreType == 0 {
  16. storeId = "0"
  17. }
  18. }
  19. cate := db.GetCate(MasterDb(c), storeId)
  20. cateList := make([]map[string]string, 0)
  21. if cate != nil {
  22. for _, v := range *cate {
  23. tmp := map[string]string{
  24. "id": utils.IntToStr(v.Id),
  25. "name": v.Title,
  26. }
  27. cateList = append(cateList, tmp)
  28. }
  29. }
  30. e.OutSuc(c, cateList, nil)
  31. return
  32. }