This commit is contained in:
parent
2a5cf59a19
commit
de25330b3e
|
@ -121,4 +121,8 @@ const (
|
|||
FrontendRouteId_Zone = 0 // 空间主页
|
||||
FrontendRouteId_ZoneMomentEdit = 1 // 重新编辑空间帖子的页面
|
||||
FrontendRouteId_ZoneRefund = 2 // 空间退款页面
|
||||
|
||||
FrontendRouteId_Zone_H5 = 100 // 空间主页-H5
|
||||
FrontendRouteId_ZoneMomentEdit_H5 = 101 // 重新编辑空间帖子的页面-H5
|
||||
FrontendRouteId_ZoneRefund_H5 = 102 // 空间退款页面-H5
|
||||
)
|
||||
|
|
|
@ -209,6 +209,12 @@ func (handler *NotifBuilderHandler) handleSysZoneCreated() {
|
|||
logger.Error("_DefaultFrontendRoute GetById fail, err: %v", err)
|
||||
}
|
||||
|
||||
// 获取H5跳转路径
|
||||
frontendroute, err := _DefaultFrontendRoute.GetById(ctx, consts.FrontendRouteId_Zone)
|
||||
if err != nil {
|
||||
logger.Error("_DefaultFrontendRoute GetById fail, err: %v", err)
|
||||
}
|
||||
|
||||
// 获取缩略图
|
||||
preview, err := DefaultService.utilGetZonePreviews(ctx, zone.GetId())
|
||||
if err != nil {
|
||||
|
|
|
@ -90,8 +90,10 @@ var VasNotifTempKeyMap = map[string][]int64{
|
|||
consts.VasNotifTemp_ZoneSuperfanshipPurchased_WxPublic, consts.VasNotifTemp_ZoneSuperfanshipPurchased_WxPrivate},
|
||||
ProductIdH5ZoneMoment: {consts.VasNotifTemp_ZoneMomentPurchased_User, consts.VasNotifTemp_ZoneMomentPurchased_Streamer},
|
||||
ProductIdH5ZoneIronfanship: {consts.VasNotifTemp_ZoneIronfanshipUnlocked_User, consts.VasNotifTemp_ZoneIronfanshipUnlocked_Streamer},
|
||||
ProductIdContactWechat: {consts.VasNotifTemp_WxPurchased_User, consts.VasNotifTemp_WxPurchased_Streamer},
|
||||
ProductIdH5ContactWechat: {consts.VasNotifTemp_WxPurchased_User, consts.VasNotifTemp_WxPurchased_Streamer},
|
||||
ProductIdContactWechat: {consts.VasNotifTemp_WxPurchased_User_WxPublic, consts.VasNotifTemp_WxPurchased_User_WxPrivate,
|
||||
consts.VasNotifTemp_WxPurchased_Streamer_WxPublic, consts.VasNotifTemp_WxPurchased_Streamer_WxPrivate},
|
||||
ProductIdH5ContactWechat: {consts.VasNotifTemp_WxPurchased_User_WxPublic, consts.VasNotifTemp_WxPurchased_User_WxPrivate,
|
||||
consts.VasNotifTemp_WxPurchased_Streamer_WxPublic, consts.VasNotifTemp_WxPurchased_Streamer_WxPrivate},
|
||||
}
|
||||
|
||||
// 商品类型
|
||||
|
|
Loading…
Reference in New Issue