|
|
|
@ -3,6 +3,7 @@
|
|
|
|
|
<link href="__CSS__/20180207/data.css" rel="stylesheet">
|
|
|
|
|
<link href="__CSS__/20180207/manager.css" rel="stylesheet">
|
|
|
|
|
<link href="__CSS__/20180207/finance.css" rel="stylesheet">
|
|
|
|
|
<link href="__CSS__/detailed.css?v=1.1" rel="stylesheet">
|
|
|
|
|
<link href="__STATIC__/icons_alibaba/iconfont.css?v=1.2" rel="stylesheet">
|
|
|
|
|
</block>
|
|
|
|
|
|
|
|
|
@ -62,16 +63,47 @@
|
|
|
|
|
width: 180px;
|
|
|
|
|
height: 34px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-security {
|
|
|
|
|
width: 500px;
|
|
|
|
|
height: 2.5rem;
|
|
|
|
|
padding-left: 10px;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
border: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-security {
|
|
|
|
|
width: 300px;
|
|
|
|
|
height: 2.4rem;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
background-color: #358fe4;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-security-close {
|
|
|
|
|
width: 300px;
|
|
|
|
|
height: 2.4rem;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
<div class="page-search normal_list query-recharge-search jssearch">
|
|
|
|
|
<div class="trunk-title">
|
|
|
|
|
<div class="location">
|
|
|
|
|
<div class="location-container">当前位置:<span>财务管理></span><span>{$meta_title}</span></div>
|
|
|
|
|
</div>
|
|
|
|
|
<if condition="isset($listData)">
|
|
|
|
|
<img src="__IMG__/20180207/icon_chongzhi.png">
|
|
|
|
|
<span class="title_main">{$meta_title}</span>
|
|
|
|
|
<else/>
|
|
|
|
|
<span class="title_main">安全密码</span>
|
|
|
|
|
</if>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="trunk-content article">
|
|
|
|
|
<if condition="isset($listData)">
|
|
|
|
|
<div class="trunk-search clearfix">
|
|
|
|
|
<div class="tab normal_tab">
|
|
|
|
|
</div>
|
|
|
|
@ -98,7 +130,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
<!-- </form> -->
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="page-list apply-app_apply-list query-recharge-list">
|
|
|
|
|
<div class="trunk-content article">
|
|
|
|
|
<div class="tabcon trunk-list">
|
|
|
|
@ -152,6 +184,24 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<else/>
|
|
|
|
|
<div class="trunk-search clearfix" style="display: table-caption;">
|
|
|
|
|
<div class="tab detailed-box" style="margin-top: 40px;align-items: center;">
|
|
|
|
|
<label class="detailed-title detailed-label" style="margin-right: 20px;">安全密码:</label>
|
|
|
|
|
<div class="detailed-content-box">
|
|
|
|
|
<input class="input-security" id="security_password" type="password" placeholder="安全密码">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tab detailed-box">
|
|
|
|
|
<label class="detailed-title detailed-label" style="margin-right: 20px;"></label>
|
|
|
|
|
<div class="detailed-content-box" style="display: flex;width: 100%;">
|
|
|
|
|
<button class="btn-security" style="margin-right: 20px;">确定</button>
|
|
|
|
|
<button class="btn-security-close">取消</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</if>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -198,6 +248,31 @@
|
|
|
|
|
endDate: date
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('.btn-security').on('click', function () {
|
|
|
|
|
var password = $('#security_password').val();
|
|
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
|
type: "post",
|
|
|
|
|
url: "{:U('GameDivide/verifyPassword')}",
|
|
|
|
|
dataType: "json",
|
|
|
|
|
data: {'password': password},
|
|
|
|
|
success: function (data) {
|
|
|
|
|
if (data.status == 1) {
|
|
|
|
|
window.location.reload();
|
|
|
|
|
} else {
|
|
|
|
|
layer.msg(data.msg, {icon: 5});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
error: function (result) {
|
|
|
|
|
layer.msg('网络异常', {icon: 5});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('.btn-security-close').on('click', function () {
|
|
|
|
|
window.location.href = "{:U('Promote/index')}";
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#submit').click(function () {
|
|
|
|
|
var sdate = $('#sdate').val();
|
|
|
|
|
var edate = $('#edate').val();
|
|
|
|
|