Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
郝肖肖
8 years ago
Commit
404e306f314b7a4dfb31c3c5dde24cc25a35d767
1 parent
cdc45197
秒杀 order-info path
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
static/js/cart/order-info.js
yohobuy/m.yohobuy.com/application/modules/Cart/controllers/Index.php
static/js/cart/order-info.js
View file @
404e306
...
...
@@ -28,7 +28,7 @@ function init() {
msg
:
null
,
cartType
:
'ordinary'
};
window
.
setCookie
(
'order-info'
,
JSON
.
stringify
(
info
)
,
{
path
:
'/cart'
}
);
window
.
setCookie
(
'order-info'
,
JSON
.
stringify
(
info
));
}
// info 必须是 JSON 字符串
...
...
@@ -48,5 +48,5 @@ exports.orderInfo = function(key, value) {
return
info
[
key
];
}
info
[
key
]
=
value
;
window
.
setCookie
(
'order-info'
,
JSON
.
stringify
(
info
)
,
{
path
:
'/cart'
}
);
window
.
setCookie
(
'order-info'
,
JSON
.
stringify
(
info
));
};
...
...
yohobuy/m.yohobuy.com/application/modules/Cart/controllers/Index.php
View file @
404e306
...
...
@@ -484,7 +484,7 @@ class IndexController extends AbstractAction
$moreUrl
=
$this
->
server
(
'HTTP_REFERER'
,
'/cart/index/orderEnsure'
);
//取跳过来的url
//购物车订单进来,秒杀进来
if
(
strrpos
(
$moreUrl
,
'/cart/index/orderEnsure'
)
!==
false
||
strrpos
(
$moreUrl
,
'/cart/seckill'
)
!==
false
)
{
if
(
strrpos
(
$moreUrl
,
'/cart/index/orderEnsure'
)
!==
false
||
strrpos
(
$moreUrl
,
'/cart/
index/
seckill'
)
!==
false
)
{
$this
->
setSession
(
'addressMore'
,
$moreUrl
);
}
$data
[
'addressMore'
]
=
$this
->
getSession
(
'addressMore'
);
...
...
@@ -576,7 +576,7 @@ class IndexController extends AbstractAction
$moreUrl
=
$this
->
server
(
'HTTP_REFERER'
,
'/cart/index/orderEnsure'
);
//取跳过来的url
//购物车订单进来,秒杀进来
if
(
strrpos
(
$moreUrl
,
'/cart/index/orderEnsure'
)
!==
false
||
strrpos
(
$moreUrl
,
'/cart/seckill'
)
!==
false
)
{
if
(
strrpos
(
$moreUrl
,
'/cart/index/orderEnsure'
)
!==
false
||
strrpos
(
$moreUrl
,
'/cart/
index/
seckill'
)
!==
false
)
{
$this
->
setSession
(
'addressMore'
,
$moreUrl
);
}
...
...
Please
register
or
login
to post a comment