|
@@ -78,6 +78,13 @@ func GetLotteryActiveInfo(activeId int64, session *httpsession.Session, req *htt
|
|
|
} else {
|
|
|
pic = ""
|
|
|
}
|
|
|
+ bigPic := ""
|
|
|
+ bgPicMap := common.ObjToMap(r.DLai.BgPic)
|
|
|
+ if bgPicMap != nil {
|
|
|
+ bigPic = common.ObjToString((*bgPicMap)[platform])
|
|
|
+ } else {
|
|
|
+ bigPic = ""
|
|
|
+ }
|
|
|
activeInfo.Lai = &Lai{
|
|
|
Name: r.DLai.Name,
|
|
|
LotteryStartTime: r.DLai.LotteryStartTime,
|
|
@@ -87,6 +94,7 @@ func GetLotteryActiveInfo(activeId int64, session *httpsession.Session, req *htt
|
|
|
ShareCopy: r.DLai.ShareCopy,
|
|
|
Pic: pic,
|
|
|
Mold: r.DLai.Mold,
|
|
|
+ BgPic: bigPic,
|
|
|
}
|
|
|
//奖品信息
|
|
|
if r.DLpi, err = r.PrizeInfo(); err != nil {
|