mall.go 1.09 KB
package apis

import (
	"net/http"

	. "client/icesimba.mall/models"
	"github.com/gin-gonic/gin"
)

var (
	code string
)

func QueryMallsByGameIdApi(c *gin.Context) {
	gameId := c.Request.FormValue("game_id")
	if gameId == "" {
		code = "1003"
		c.JSON(http.StatusOK, gin.H{
			"code": code,
			"msg":  "参数错误",
		})
		return
	}
	mall := Mall{
		GameId: gameId,
	}
	malls, err := mall.QueryMallsByGameId()
	if err != nil {
		code = "1000"
		c.JSON(http.StatusOK, gin.H{
			"code": code,
			"msg":  err.Error(),
		})
		return
	}
	code = "0"
	c.JSON(http.StatusOK, gin.H{
		"code": code,
		"obj":  malls,
	})
	return
}

//func InsertOrUpdateMallApi(c *gin.Context) {
//	mallCode := c.Request.FormValue("mall_code")
//	gameId := c.Request.FormValue("game_id")
//	if mallCode == "" || gameId == "" {
//		c.JSON(400, gin.H{
//			"msg": "参数错误",
//		})
//	}
//	mall := Mall{
//		Code:   mallCode,
//		GameId: gameId,
//	}
//	code, err := mall.InsertOrUpdateMall()
//	if err != nil {
//		c.JSON(code, gin.H{
//			"msg": err.Error(),
//		})
//	}
//	c.JSON(code, gin.H{
//		"obj": "成功",
//	})
//	return
//}