Merge branch 'feature/ip_forbit' of wmtx/platform into release

ip白名单页面问题修正
master
廖金灵 5 years ago committed by Gogs
commit e8282fc00c

@ -185,6 +185,10 @@
transition: all 0.1s ease-in; transition: all 0.1s ease-in;
} }
a:hover {
color: transparent;
}
</style> </style>
<div class="cf main-place top_nav_list navtab_list"> <div class="cf main-place top_nav_list navtab_list">
@ -192,9 +196,9 @@
<h3 class="page_title">ip限制白名单</h3> <h3 class="page_title">ip限制白名单</h3>
<p class="description_text">说明:苹果内购白名单,名单中的用户支付成功可通知游戏</p> <p class="description_text">说明:苹果内购白名单,名单中的用户支付成功可通知游戏</p>
<div class="demo"> <div class="demo">
<div class="wrap" ><span style="float: right;margin-top: 7px;margin-right: 120px"></span> <div class="wrap" ><span style="float: right;margin-top: 7px;margin-right: 120px"></span>
<input type="checkbox" id="checkbox_c2" class="chk_3" <if condition="$apple_interior_buy eq 1">checked</if> /><label for="checkbox_c2" style="float: right;margin-right: 5px" onclick="setAppleInteriorBuyStatus({$set_apple_interior_buy})"></label> <input type="checkbox" id="checkbox_c2" class="chk_3" <if condition="$apple_interior_buy eq 1">checked</if> /><label for="checkbox_c2" style="float: right;margin-right: 5px" onclick="setAppleInteriorBuyStatus({$set_apple_interior_buy})"></label>
<span style="float: right;margin-top: 7px;margin-right: 5px"></span> <span style="float: right;margin-top: 7px;margin-right: 5px"></span>
<span style="float: right;margin-top: 7px;margin-right: 30px">全游戏苹果内购支付成功通知默认限制</span> <span style="float: right;margin-top: 7px;margin-right: 30px">全游戏苹果内购支付成功通知默认限制</span>
</div> </div>
</div> </div>
@ -517,7 +521,15 @@
function setAppleInteriorBuyStatus(status) { function setAppleInteriorBuyStatus(status) {
layer.confirm('【警告】是否确认打开全游戏苹果内购支付成功通知', { var text = '【警告】是否确认打开全游戏苹果内购支付成功通知';
if(status == 0) {
text = '【警告】是否确认关闭全游戏苹果内购支付成功通知';
}
layer.confirm(text, {
btn: ['确认','取消'], btn: ['确认','取消'],
area: ['380px','120px'], area: ['380px','120px'],
title: false title: false

Loading…
Cancel
Save