mall.go
1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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
//}