切换导航条
此项目
正在载入...
登录
潘浩文
/
fupai1
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
潘浩文
6 years ago
提交
c7c18e215ca87ce8b679cd605a232319c3ea58fb
1 个父辈
82f5400b
1 个管道 的构建
通过
耗费 0 秒
个人中心页面渲染
变更
3
构建
1
隐藏空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
3 行增加
和
3 行删除
app/portal/controller/AdminLightOrderController.php
app/portal/controller/PayController.php
public/themes/admin_simpleboot3/portal/admin_light_order/index3.html
app/portal/controller/AdminLightOrderController.php
查看文件 @
c7c18e2
...
...
@@ -124,7 +124,7 @@ class AdminLightOrderController extends AdminBaseController
->
join
(
'users u'
,
'lo.users_id=u.id'
)
->
join
(
'temple t'
,
'l.temple_id=t.id'
)
->
where
(
't.id'
,
$id
)
->
field
(
'lo.*,u.*'
)
->
field
(
'lo.*,u.*
,lo.id as loid
'
)
->
order
(
'lo.create_time'
,
'desc'
)
->
paginate
(
'10'
);
$this
->
assign
(
'page'
,
$data
->
render
());
...
...
app/portal/controller/PayController.php
查看文件 @
c7c18e2
...
...
@@ -87,7 +87,7 @@ class PayController extends WeChatBaseController
if
(
$successful
)
{
// 回填微信的订单号
// $update['transaction_id']=$notify->transaction_id;
//
$update['pay_time']=time();
$update
[
'pay_time'
]
=
time
();
// 不是已经支付状态则修改为已经支付状态
$update
[
'status'
]
=
1
;
$light
=
Db
::
name
(
'light_order'
)
->
where
(
'order_sn'
,
$out_trade_no
)
->
find
();
...
...
public/themes/admin_simpleboot3/portal/admin_light_order/index3.html
查看文件 @
c7c18e2
...
...
@@ -23,7 +23,7 @@
<tbody>
<foreach
name=
"list"
item=
"vo"
>
<tr>
<td>
{$vo.id}
</td>
<td>
{$vo.
lo
id}
</td>
<td>
{:date('Y-m-d',$vo.pay_time);}
</td>
<td>
{$vo.user_name}
</td>
<td>
{$vo.nickname}
</td>
...
...
请
注册
或
登录
后发表评论