ZLW-PC\Administrator
7 years ago
7 changed files with 150 additions and 12 deletions
-
1app/Http/Controllers/Api/UserMoneyController.php
-
50app/Http/Controllers/Weixin/UserController.php
-
6app/Http/Model/UserRecharge.php
-
3resources/views/weixin/user/userRecharge.blade.php
-
96resources/views/weixin/user/userRechargeOrder.blade.php
-
2resources/views/weixin/user/userRechargeOrderDetail.blade.php
-
4routes/web.php
@ -0,0 +1,96 @@ |
|||||
|
<!DOCTYPE html><html><head><meta http-equiv="content-type" content="text/html;charset=utf-8"/> |
||||
|
<title>充值明细</title><meta name="keywords" content="关键词"><meta name="description" content="描述"><meta content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0" name="viewport"> |
||||
|
<link href="<?php echo env('APP_URL'); ?>/css/weixin/style.css" type="text/css" rel="stylesheet"> |
||||
|
<script type="text/javascript" src="<?php echo env('APP_URL'); ?>/js/jquery.min.js"></script> |
||||
|
<script type="text/javascript" src="<?php echo env('APP_URL'); ?>/js/weixin/mobile.js"></script></head><body> |
||||
|
<div class="classreturn loginsignup"> |
||||
|
<div class="ds-in-bl return"><a href="javascript:history.back(-1);"><img src="<?php echo env('APP_URL'); ?>/images/weixin/return.png" alt="返回"></a></div> |
||||
|
<div class="ds-in-bl tit center"><span>充值明细</span></div> |
||||
|
</div> |
||||
|
|
||||
|
<script type="text/javascript" src="<?php echo env('APP_URL'); ?>/js/layer/mobile/layer.js"></script> |
||||
|
<style> |
||||
|
.money_list li{padding:15px;border-bottom:1px solid #ddd;}
|
||||
|
.money_list .tit{color:#000;font-size:18px;margin-bottom:5px;}
|
||||
|
.money_list .time{color:#8e8e8e;font-size:12px;}
|
||||
|
.money_list span{font-size:18px;float:right;vertical-align:middle;margin-top:12px;} |
||||
|
.money_list span.green{color:#04ba06;}
|
||||
|
</style> |
||||
|
<div class="floor"> |
||||
|
<?php if($list){ ?>
|
||||
|
<ul class="money_list cl"> |
||||
|
<?php foreach($list as $k=>$v){ ?>
|
||||
|
<li> |
||||
|
<span class="green">+ <?php echo $v['money']; ?></span>
|
||||
|
<div class="info"><p class="tit">充值</p> |
||||
|
<p class="time"><?php echo $v['created_at']; ?></p></div>
|
||||
|
</li> |
||||
|
<?php } ?>
|
||||
|
</ul> |
||||
|
<?php }else{ ?>
|
||||
|
<div style="text-align:center;line-height:40px;color:#999;">暂无记录</div> |
||||
|
<?php } ?>
|
||||
|
</div> |
||||
|
<script> |
||||
|
$(function(){ |
||||
|
var ajaxload = false; |
||||
|
var maxpage = false; |
||||
|
var startpage = 1; |
||||
|
var totalpage = <?php echo $totalpage; ?>;
|
||||
|
|
||||
|
var tmp_url = window.location.href; |
||||
|
msg = tmp_url.split("#"); |
||||
|
tmp_url = msg[0]; |
||||
|
|
||||
|
$(window).scroll(function () |
||||
|
{ |
||||
|
var listheight = $(".money_list").outerHeight(); |
||||
|
|
||||
|
if ($(document).scrollTop() + $(window).height() >= listheight) |
||||
|
{ |
||||
|
if(startpage >= totalpage) |
||||
|
{ |
||||
|
//$("#submit_bt_one").html("已是最后一页,没有更多数据!");
|
||||
|
return false; |
||||
|
} |
||||
|
|
||||
|
if(!ajaxload && !maxpage) |
||||
|
{ |
||||
|
ajaxload = true; |
||||
|
//$("#submit_bt_one").html("努力加载中...");
|
||||
|
var url = tmp_url; |
||||
|
var nextpage = startpage+1; |
||||
|
|
||||
|
$.get(url,{page_ajax:1,page:nextpage},function(res) |
||||
|
{ |
||||
|
if(res) |
||||
|
{ |
||||
|
$(".money_list").append(res); |
||||
|
startpage++; |
||||
|
|
||||
|
if(startpage >= totalpage) |
||||
|
{ |
||||
|
maxpage = true; |
||||
|
//$("#submit_bt_one").html("已是最后一页,没有更多数据!");
|
||||
|
} |
||||
|
else |
||||
|
{ |
||||
|
//$("#submit_bt_one").html("点击加载更多");
|
||||
|
} |
||||
|
|
||||
|
ajaxload = false; |
||||
|
} |
||||
|
else |
||||
|
{ |
||||
|
//$("#submit_bt_one").html("请求失败,请稍候再试!");
|
||||
|
ajaxload = false; |
||||
|
} |
||||
|
},'json'); |
||||
|
} |
||||
|
} |
||||
|
}); |
||||
|
}); |
||||
|
</script> |
||||
|
|
||||
|
@include('weixin.common.footer') |
||||
|
</body></html> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue