1:修改我的页面点击事件

This commit is contained in:
2025-11-20 10:06:17 +08:00
parent acec782e3a
commit be7c855283

View File

@@ -176,17 +176,11 @@ public class VocalRangeFragment extends BaseMvpFragment<MePresenter, FragmentVoc
Intent intent = new Intent(getContext(), BlacklistActivity.class); Intent intent = new Intent(getContext(), BlacklistActivity.class);
intent.putExtra("type", 0); intent.putExtra("type", 0);
startActivity(intent); startActivity(intent);
} else if (id == R.id.ll_me_guild) { } else if (id==R.id.ll_me_guild){
Intent intent = new Intent(getContext(), WebViewActivity.class);
intent.putExtra("url", CommonAppContext.getInstance().getCurrentEnvironment().getH5Url() + "/web/index.html#/pages/union/index?id=" + SpUtil.getToken());
}else if (id==R.id.ll_me_guild){
Intent intent=new Intent(getContext(), WebViewActivity.class); Intent intent=new Intent(getContext(), WebViewActivity.class);
intent.putExtra("url", String.format(WebUrlConstants.INSTANCE.getWEB_GUILD_URL(),SpUtil.getToken())); intent.putExtra("url", String.format(WebUrlConstants.INSTANCE.getWEB_GUILD_URL(),SpUtil.getToken()));
intent.putExtra("title", "公会"); intent.putExtra("title", "公会");
startActivity(intent); startActivity(intent);
} else if (id == R.id.ll_my_shopping) {
Intent intent = new Intent(getContext(), WebViewActivity.class);
intent.putExtra("url", CommonAppContext.getInstance().getCurrentEnvironment().getH5Url() + "/web/index.html#/pages/prop/propMall?id=" + SpUtil.getToken());
}else if (id==R.id.ll_my_shopping){ }else if (id==R.id.ll_my_shopping){
Intent intent=new Intent(getContext(), WebViewActivity.class); Intent intent=new Intent(getContext(), WebViewActivity.class);
intent.putExtra("url", String.format(WebUrlConstants.INSTANCE.getWEB_PROP_MALL_URL(),SpUtil.getToken())); intent.putExtra("url", String.format(WebUrlConstants.INSTANCE.getWEB_PROP_MALL_URL(),SpUtil.getToken()));