正在显示
3 个修改的文件
包含
3 行增加
和
3 行删除
@@ -124,7 +124,7 @@ class AdminLightOrderController extends AdminBaseController | @@ -124,7 +124,7 @@ class AdminLightOrderController extends AdminBaseController | ||
124 | ->join('users u','lo.users_id=u.id') | 124 | ->join('users u','lo.users_id=u.id') |
125 | ->join('temple t','l.temple_id=t.id') | 125 | ->join('temple t','l.temple_id=t.id') |
126 | ->where('t.id',$id) | 126 | ->where('t.id',$id) |
127 | - ->field('lo.*,u.*') | 127 | + ->field('lo.*,u.*,lo.id as loid') |
128 | ->order('lo.create_time','desc') | 128 | ->order('lo.create_time','desc') |
129 | ->paginate('10'); | 129 | ->paginate('10'); |
130 | $this->assign('page',$data->render()); | 130 | $this->assign('page',$data->render()); |
@@ -87,7 +87,7 @@ class PayController extends WeChatBaseController | @@ -87,7 +87,7 @@ class PayController extends WeChatBaseController | ||
87 | if ($successful) { | 87 | if ($successful) { |
88 | // 回填微信的订单号 | 88 | // 回填微信的订单号 |
89 | // $update['transaction_id']=$notify->transaction_id; | 89 | // $update['transaction_id']=$notify->transaction_id; |
90 | -// $update['pay_time']=time(); | 90 | + $update['pay_time']=time(); |
91 | // 不是已经支付状态则修改为已经支付状态 | 91 | // 不是已经支付状态则修改为已经支付状态 |
92 | $update['status']=1; | 92 | $update['status']=1; |
93 | $light=Db::name('light_order')->where('order_sn',$out_trade_no)->find(); | 93 | $light=Db::name('light_order')->where('order_sn',$out_trade_no)->find(); |
@@ -23,7 +23,7 @@ | @@ -23,7 +23,7 @@ | ||
23 | <tbody> | 23 | <tbody> |
24 | <foreach name="list" item="vo"> | 24 | <foreach name="list" item="vo"> |
25 | <tr> | 25 | <tr> |
26 | - <td>{$vo.id}</td> | 26 | + <td>{$vo.loid}</td> |
27 | <td>{:date('Y-m-d',$vo.pay_time);}</td> | 27 | <td>{:date('Y-m-d',$vo.pay_time);}</td> |
28 | <td>{$vo.user_name}</td> | 28 | <td>{$vo.user_name}</td> |
29 | <td>{$vo.nickname}</td> | 29 | <td>{$vo.nickname}</td> |
-
请 注册 或 登录 后发表评论