|
@@ -412,7 +412,9 @@ class HomeActivity : BaseMVVMActivity<ActivityHomeBinding, HomeViewModel>() {
|
|
|
* 跳转游戏列表
|
|
|
*/
|
|
|
private fun jumpWebView(bean: Record) {
|
|
|
- val str = bean.gameUrl + "?gameCode=" + bean.gameCode + "&playClass=" + bean.playClass + "&userToken=" + User.getToken()
|
|
|
+ val str =
|
|
|
+ bean.gameUrl + "?gameCode=" + bean.gameCode + "&isFull=true&isSound=true&playClass=" + bean.playClass +
|
|
|
+ "&userToken=" + User.getToken()
|
|
|
JumpUtil.jumpActivityWithUrl(RouterUrlCommon.WEB_VIEW_INTERACTION_JS, str, this)
|
|
|
}
|
|
|
|