切换导航条
此项目
正在载入...
登录
anyv
/
xkeasy
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
anyv
6 years ago
提交
fdca5be3ad1326f44370470dcba8befde78651e3
1 个父辈
ce1466c0
购物车
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
11 行增加
和
0 行删除
app/portal/controller/ShopcartController.php
app/portal/controller/ShopcartController.php
查看文件 @
fdca5be
...
...
@@ -156,6 +156,17 @@ class ShopcartController extends WeChatBaseController{
$res
=
json_encode
(
$ret
);
return
$res
;
}
elseif
(
$data
[
0
][
'type'
]
==
2
){
$indent
[
'uid'
]
=
$uid
;
$indent
[
'state'
]
=
4
;
$indent
[
'order_number'
]
=
date
(
'Ymd'
)
.
substr
(
implode
(
NULL
,
array_map
(
'ord'
,
str_split
(
substr
(
uniqid
(),
7
,
13
),
1
))),
0
,
8
);
$indent
[
'money'
]
=
$_POST
[
'myprice'
];
$indent
[
'indent_type'
]
=
2
;
$indent
[
'create_time'
]
=
time
();
$book_num
=
0
;
foreach
(
$data
as
$key
=>
$val
){
$book_num
+=
$val
[
'book_num'
];
}
$indent
[
'book_num'
]
=
$book_num
;
return
2
;
}
...
...
请
注册
或
登录
后发表评论