版署需求 只显示 装备副本记录

This commit is contained in:
meixiongfeng 2023-07-28 11:38:07 +08:00
parent 2b493cdbdf
commit 471b438f5a

View File

@ -79,11 +79,14 @@ func (this *Viking) CheckUserBaseVikingInfo(uid string) (data []*pb.DBVikingRank
list, err := this.modelViking.getVikingList(uid)
if err == nil {
for k := range list.Boss {
if k <= 3 { // 版署需求 只显示 装备副本记录
_d := this.modulerank.getVikingRankListByBossType(uid, k)
if _d != nil {
data = append(data, _d)
}
}
}
}
return
}