62 lines
2.9 KiB
Java
62 lines
2.9 KiB
Java
package com.yunbao.common;
|
|
|
|
/**
|
|
* Created by cxf on 2018/10/15.
|
|
*/
|
|
|
|
public class HtmlConfig {
|
|
|
|
//登录即代表同意服务和隐私条款
|
|
public static final String LOGIN_PRIVCAY = CommonAppConfig.HOST + "/index.php?g=portal&m=page&a=index&id=3";
|
|
public static final String LOGIN_PRIVCAY1 = CommonAppConfig.HOST + "/index.php?g=Portal&m=Page&a=index&id=59";
|
|
|
|
//注册用户协议
|
|
public static final String REG_PRIVCAY1 = CommonAppConfig.HOST + "/index.php?g=portal&m=page&a=index&id=2";
|
|
public static final String REG_PRIVCAY2 = CommonAppConfig.HOST + "/index.php?g=portal&m=page&a=index&id=3";
|
|
|
|
//直播间贡献榜
|
|
public static final String LIVE_LIST = CommonAppConfig.HOST + "/index.php?g=Appapi&m=contribute&a=index&uid=";
|
|
//直播间粉丝排行榜
|
|
public static final String LIVE_FANS_MEDAL_RANKING = CommonAppConfig.HOST + "/index.php?g=Appapi&m=Fans&a=fansranking&uid=";
|
|
//个人主页分享链接
|
|
public static final String SHARE_HOME_PAGE = CommonAppConfig.HOST + "/index.php?g=Appapi&m=home&a=index&touid=";
|
|
//提现记录
|
|
public static final String CASH_RECORD = CommonAppConfig.HOST + "/index.php?g=Appapi&m=cash&a=index";
|
|
//支付宝充值回调地址
|
|
public static final String ALI_PAY_COIN_URL = CommonAppConfig.HOST + "/Appapi/Pay/notify_ali";
|
|
//谷歌支付回调地址
|
|
public static final String GOOGLE_PAY_COIN_URL = CommonAppConfig.HOST + "/Appapi/Pay/";
|
|
|
|
//视频分享地址
|
|
public static final String SHARE_VIDEO = CommonAppConfig.HOST + "/index.php?g=appapi&m=video&a=index&videoid=";
|
|
//直播间幸运礼物说明
|
|
public static final String LUCK_GIFT_TIP = CommonAppConfig.HOST + "/index.php?g=portal&m=page&a=index&id=26";
|
|
|
|
//直播间玩家看到的心愿单
|
|
public static final String WISHLIST_URL = CommonAppConfig.HOST + "/index.php?g=Appapi&m=Wish&a=index";
|
|
|
|
//直播间玩家看到的转盘
|
|
public static final String TURNTABLE_URL = CommonAppConfig.HOST + "/Appapi/Turntable/index";
|
|
|
|
//在线商城
|
|
public static final String SHOP = CommonAppConfig.HOST + "/h5/shop/index.html";
|
|
|
|
//社区
|
|
public static final String ENCOURAGE = CommonAppConfig.HOST + "/h5/shequ/index.html#/h5/shequ";
|
|
|
|
//个人信息
|
|
public static final String PERSONAL = CommonAppConfig.HOST + "/h5/shequ/index.html#/h5/shequ/Personal";
|
|
|
|
//我的徽章 右上角问号
|
|
public static final String MEDAL_QUESTION = CommonAppConfig.HOST + "/index.php?g=Appapi&m=Fans&a=rule&isfans=1";
|
|
|
|
//我的明细
|
|
public static final String DETAIL = CommonAppConfig.HOST + "/index.php?g=Appapi&m=Detail&a=index";
|
|
//充值协议
|
|
public static final String CHARGE_PRIVCAY = CommonAppConfig.HOST + "/index.php?g=portal&m=page&a=index&id=6";
|
|
|
|
//充值说明
|
|
public static final String CHARGE_EXPLAIN = CommonAppConfig.HOST + "/index.php?g=portal&m=page&a=index&id=41";
|
|
|
|
}
|