Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
Rock Zhang
9 years ago
Commit
7f0161a0b140e98b69b2f5c2d718efc2ff31deb1
2 parents
26e956ec
0f5c5e10
Merge branch 'develop' of git.dev.yoho.cn:web/yohobuy into develop
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
11 deletions
static/js/cart/cart.js
static/js/cart/good.js
static/sass/index.scss
template/m.yohobuy.com/actions/cart/index/index.phtml
static/js/cart/cart.js
View file @
7f0161a
...
...
@@ -77,8 +77,8 @@ if (typeof window.cookie === 'function' && 'y' === window.cookie('_hasShowCartPr
if
(
'advance'
===
cartType
)
{
$cartContent
.
toggleClass
(
'hide'
);
$
(
'presell-cart-nav'
).
addClass
(
'active'
);
$
(
'common-cart-nav'
).
removeClass
(
'active'
);
$
(
'#common-cart-nav'
).
removeClass
(
'active'
);
$
(
'#presell-cart-nav'
).
addClass
(
'active'
);
}
if
(
$
(
'.cart-nav'
).
length
>
0
)
{
...
...
@@ -133,15 +133,16 @@ if ($('.freebie').length > 0) {
}
$
(
'.btn-balance'
).
on
(
'touchend'
,
function
()
{
if
(
shouldSelectGift
())
{
showChooseGifDialog
();
return
false
;
}
if
(
shouldLowStocks
())
{
tip
.
show
(
'库存不足无法结算'
);
return
false
;
}
if
(
shouldSelectGift
())
{
showChooseGifDialog
();
return
false
;
}
if
(
hasChecked
)
{
window
.
location
.
href
=
'/cart/index/orderEnsure?cartType='
+
cartType
;
}
else
{
...
...
static/js/cart/good.js
View file @
7f0161a
...
...
@@ -190,6 +190,10 @@ function bottomCheckBoxHandeler(isSelected, type, handlerAfterTouch) {
//全选按钮点击事件
$selectAllBtn
.
on
(
'touchend'
,
function
()
{
if
(
$
(
'.low-stocks'
).
length
>
0
)
{
tip
.
show
(
'所选商品中含有库存不足的商品'
);
return
false
;
}
bottomCheckBoxHandeler
(
$
(
this
).
hasClass
(
'icon-cb-checked'
),
$
(
'#cartType'
).
val
(),
didUpdateAllGoodsCheckStatus
);
});
...
...
static/sass/index.scss
View file @
7f0161a
...
...
@@ -101,7 +101,7 @@ a {
color
:
#fff
;
font-size
:
18px
;
border
:
none
;
z-index
:
2
;
z-index
:
4
;
@include
border-radius
(
10px
);
}
...
...
template/m.yohobuy.com/actions/cart/index/index.phtml
View file @
7f0161a
...
...
@@ -19,13 +19,13 @@
{
{^
}
}
{
{#if
cartNav
}
}
<ul
class=
"cart-nav clearfix"
>
<li
class=
"active"
>
<span
id=
"common-cart-nav"
>
<li
class=
"active"
id=
"common-cart-nav"
>
<span
>
普通商品(
{
{commonGoodsCount
}
})
</span>
</li>
<li>
<span
id=
"presell-cart-nav"
>
<li
id=
"presell-cart-nav"
>
<span
>
预售商品(
{
{presellGoodsCount
}
})
</span>
<div
id=
"presell-tip"
class=
"presell-tip hide"
>
...
...
Please
register
or
login
to post a comment