|
|
@@ -146,8 +146,7 @@ class HomeActivity : BaseMVVMActivity<ActivityHomeBinding, HomeViewModel>() {
|
|
|
if (currentTaskRecord != null) {
|
|
|
currentTaskRecord.let {
|
|
|
val str =
|
|
|
- it?.gameUrl + "?gameCode=" + it?.gameCode + "&gameLevel=" + it?.gameLevel +
|
|
|
- "&playClass=A" + "&userToken=" + User.getToken()
|
|
|
+ it?.gameUrl + "?gameCode=" + it?.gameCode + "&playClass=A" + "&userToken=" + User.getToken()
|
|
|
JumpUtil.jumpActivityWithUrl(
|
|
|
RouterUrlCommon.WEB_VIEW_INTERACTION_JS,
|
|
|
str,
|
|
|
@@ -413,8 +412,7 @@ class HomeActivity : BaseMVVMActivity<ActivityHomeBinding, HomeViewModel>() {
|
|
|
* 跳转游戏列表
|
|
|
*/
|
|
|
private fun jumpWebView(bean: Record) {
|
|
|
- val str = bean.gameUrl + "?gameCode=" + bean.gameCode + "&gameLevel=" + bean.currentLevel +
|
|
|
- "&playClass=" + bean.playClass + "&userToken=" + User.getToken()
|
|
|
+ val str = bean.gameUrl + "?gameCode=" + bean.gameCode + "&playClass=" + bean.playClass + "&userToken=" + User.getToken()
|
|
|
JumpUtil.jumpActivityWithUrl(RouterUrlCommon.WEB_VIEW_INTERACTION_JS, str, this)
|
|
|
}
|
|
|
|