作者 yangfu

机会池修改

@@ -39,7 +39,7 @@ @@ -39,7 +39,7 @@
39 |配置-用户机会权限| | | | 39 |配置-用户机会权限| | | |
40 |配置-评分| | |v1/config/score| 40 |配置-评分| | |v1/config/score|
41 |消息-机会审核消息| | | | 41 |消息-机会审核消息| | | |
42 -|机会池| | | | 42 +|机会池| | |/v1/chance/chancePool|
43 |我的机会-我的收藏| | |/v1/chance/| 43 |我的机会-我的收藏| | |/v1/chance/|
44 |我的机会-我的点赞| | |/v1/chance/| 44 |我的机会-我的点赞| | |/v1/chance/|
45 |消息-点赞| | |v1/message/msgInteractive| 45 |消息-点赞| | |v1/message/msgInteractive|
@@ -37,7 +37,7 @@ user_center_app_key ="39aefef9e22744a3b2d2d3791824ae7b" @@ -37,7 +37,7 @@ user_center_app_key ="39aefef9e22744a3b2d2d3791824ae7b"
37 user_center_app_secret ="cykbjnfqgctn" 37 user_center_app_secret ="cykbjnfqgctn"
38 38
39 #Html5 39 #Html5
40 -h5_host = "https://mmm-web-open-test.fjmaimaimai.com" 40 +h5_host = "http://mmm-web-open-test.fjmaimaimai.com"
41 41
42 #审核中心 42 #审核中心
43 suplus_approve_host ="http://suplus-approve-test.fjmaimaimai.com" 43 suplus_approve_host ="http://suplus-approve-test.fjmaimaimai.com"
@@ -373,10 +373,10 @@ type ChanceItem struct { @@ -373,10 +373,10 @@ type ChanceItem struct {
373 Videos []Video `json:"videos"` 373 Videos []Video `json:"videos"`
374 } 374 }
375 type ChanceData struct { 375 type ChanceData struct {
376 - ThumbsUpTotal int `json:"thumbsUpTotal"` //点赞总数 376 + ThumbsUpTotal int `json:"thumbsupTotal"` //点赞总数
377 CommentTotal int `json:"commentTotal"` //评论总数 377 CommentTotal int `json:"commentTotal"` //评论总数
378 - PageViewTotal int `json:"pageViewTotal"` //评论总数 378 + PageViewTotal int `json:"pageView"` //评论总数
379 379
380 - IsThumbsUp bool `json:"isThumbsUp"` //是否点赞 1 点赞, 0 没有点赞  
381 - IsCollect bool `json:"isCollect"` //是否收藏 1 是 0 否 380 + IsThumbsUp bool `json:"thumbsup"` //是否点赞 1 点赞, 0 没有点赞
  381 + IsCollect bool `json:"isCollect"` //是否收藏 1 是 0 否
382 } 382 }