| | |
| | | |
| | | //订单找回 |
| | | public void jumpFindOrder() { |
| | | if (!LoginAndInviteStatusUtil.acessNext(context, UserUtil.getUid(context) , true)) |
| | | if (!LoginAndInviteStatusUtil.acessNext(context, UserUtil.getUid(context), true)) |
| | | return; |
| | | if (!isLogin()) {//登录 |
| | | UserUtil.jumpLogin(context); |
| | |
| | | |
| | | //跳转订单 |
| | | public void jumpOrder() { |
| | | if (!LoginAndInviteStatusUtil.acessNext(context, UserUtil.getUid(context) , true)) |
| | | if (!LoginAndInviteStatusUtil.acessNext(context, UserUtil.getUid(context), true)) |
| | | return; |
| | | UserCustomEvent.userOrder(context); |
| | | if (!isLogin()) { |
| | |
| | | |
| | | //收藏 |
| | | public void jumpCollect() { |
| | | if (!LoginAndInviteStatusUtil.acessNext(context, UserUtil.getUid(context) , true)) |
| | | if (!LoginAndInviteStatusUtil.acessNext(context, UserUtil.getUid(context), true)) |
| | | return; |
| | | UserCustomEvent.userCollect(context); |
| | | if (isLogin()) { |
| | |
| | | UserCustomEvent.userHelp(context); |
| | | Intent intent1 = new Intent(context, ShareBrowserActivity.class); |
| | | intent1.putExtra("title", "帮助中心"); |
| | | intent1.putExtra("url", SystemParamsUtil.getParam(context, "help")); |
| | | intent1.putExtra("url", SystemParamsUtil.getHelpUrl(context)); |
| | | context.startActivity(intent1); |
| | | } |
| | | |
| | | //转链 |
| | | public void jumpConvertLink() { |
| | | if (!LoginAndInviteStatusUtil.acessNext(context, UserUtil.getUid(context) , true)) |
| | | if (!LoginAndInviteStatusUtil.acessNext(context, UserUtil.getUid(context), true)) |
| | | return; |
| | | UserCustomEvent.userConvertLink(context); |
| | | if (isLogin()) { |
| | |
| | | |
| | | //跳转分享记录 |
| | | public void jumpShareHistory() { |
| | | if (!LoginAndInviteStatusUtil.acessNext(context, UserUtil.getUid(context) , true)) |
| | | if (!LoginAndInviteStatusUtil.acessNext(context, UserUtil.getUid(context), true)) |
| | | return; |
| | | UserCustomEvent.userShareHistory(context); |
| | | if (isLogin()) { |
| | |
| | | |
| | | //跳转云发单 |
| | | public void jumpCloud() { |
| | | if (!LoginAndInviteStatusUtil.acessNext(context, UserUtil.getUid(context) , true)) |
| | | if (!LoginAndInviteStatusUtil.acessNext(context, UserUtil.getUid(context), true)) |
| | | return; |
| | | if (isLogin()) { |
| | | context.startActivity(new Intent(context, ShareBrowserActivity.class).putExtra("url", cloudUrl).putExtra("clipboard", false + "")); |