master
ELF 5 years ago
parent 727795050c
commit aa0ec5758a

@ -33,6 +33,7 @@
<input type="hidden" name="isIOS13" value="<?php if($isIOS13):?>1<?php else:?>0<?php endif;?>">
<input type="hidden" name="isNewIos" value="<?php if($isNewIos):?>1<?php else:?>0<?php endif;?>">
<input type="hidden" name="supersign_status" value="{$game['supersign_status']}" id="supersign_status">
<input type="hidden" name="betaUrl" value="{$game['beta_url']}">
<?php if ($isWechat):?>
<?php if ($isAndroid):?>
@ -526,7 +527,7 @@
</div>
<a href="#" class="mounting-btn">点击安装TestFlight平台</a>
<div class="title-two">第二步:点击下方按钮安装游戏</div>
<a href="#" class="mounting-btn">点击安装游戏</a>
<a id="beta-url" href="#" class="mounting-btn">点击安装游戏</a>
</div>
</div>
</div>
@ -724,6 +725,7 @@ var PhoneObj = {
if (result.code == '0000') {
$(".phone").hide();
$('.mounting').show();
$('#beta-url').attr('href', $('[name=betaUrl]').val())
} else {
alert(result.msg)
}
@ -771,6 +773,7 @@ var PhoneObj = {
if (result.code == '0000') {
$('.login').hide();
$('.mounting').show();
$('#beta-url').attr('href', $('[name=betaUrl]').val())
} else {
alert(result.msg);
}
@ -817,6 +820,7 @@ var PhoneObj = {
if (result.code == '0000') {
$(".common").hide();
$('.mounting').show();
$('#beta-url').attr('href', $('[name=betaUrl]').val())
} else {
alert(result.msg)
}

Loading…
Cancel
Save