37 lines
1.1 KiB
Kotlin
37 lines
1.1 KiB
Kotlin
package com.xscm.moduleutil.base
|
||
|
||
/**
|
||
* Created by xscm on 2020/7/23.
|
||
* 描述:web url 常量
|
||
*/
|
||
object WebUrlConstants {
|
||
val BASE_URL = CommonAppContext.getInstance().currentEnvironment.h5Url
|
||
|
||
/**青少年模式*/
|
||
val WEB_ADOLESCENT_URL = BASE_URL + "/web/index.html#/pages/feedback/teenage?id=%s"
|
||
|
||
val WEB_SET_GROUP_URL = BASE_URL + "/web/index.html#/pages/union/setGroup?id=%s&guildId=%s"
|
||
|
||
/**举报*/
|
||
val WEB_REPORT_URL =
|
||
BASE_URL + "/web/index.html#/pages/feedback/report?id=%s&fromType=%d&fromId=%s"
|
||
|
||
/**规则*/
|
||
val WEB_RULES_URL = BASE_URL + "/web/index.html#/pages/other/taskDesc"
|
||
|
||
/**道具商城*/
|
||
val WEB_PROP_MALL_URL = BASE_URL + "/web/index.html#/pages/prop/propMall?id=%s"
|
||
|
||
/**公会*/
|
||
val WEB_GUILD_URL = BASE_URL + "/web/index.html#/pages/union/index?id=%s"
|
||
|
||
/**等级*/
|
||
val WEB_GRADE_URL = BASE_URL + "/web/index.html#/pages/other/grade?id=%s"
|
||
|
||
/**反馈*/
|
||
val WEB_HELP_URL = BASE_URL + "/web/index.html#/pages/feedback/help?id=%s"
|
||
|
||
/**邀请*/
|
||
val WEB_INVITATION_URL = BASE_URL + "/web/index.html#/pages/other/income?id=%s"
|
||
|
||
} |