fix:修复新人特惠页面没有传参数问题

This commit is contained in:
zlzw 2022-08-23 16:45:14 +08:00
parent 4eed760389
commit 23f765230b

View File

@ -387,7 +387,10 @@ public class LiveAudienceViewHolder extends AbsLiveViewHolder {
showTrickeryDialog();
}else if (i==R.id.live_new_people){
Bundle bundle=new Bundle();
bundle.putString("url", "https://ceshi.yaoulive.com/h5/activity/1diamondLottery/index.html");
String url= CommonAppConfig.HOST+"/h5/activity/1diamondLottery/index.html?g=Appapi&m=Turntable&a=tricky";
url += "&uid=" + CommonAppConfig.getInstance().getUid() + "&token="
+ CommonAppConfig.getInstance().getToken() + "&anchorUid=" + mLiveUid;
bundle.putString("url", url);
bundle.putInt("show_type", 0);
LiveHDDialogFragment liveHDDialogFragment = new LiveHDDialogFragment();
liveHDDialogFragment.setArguments(bundle);