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
Plain Diff
Browse Files
Authored by
hf
9 years ago
Commit
c5ac106881f7a10265c85404e2726469b5e9da21
2 parents
afa1ac4d
e181768d
Merge branch 'develop' of
http://git.dev.yoho.cn/web/yohobuy
into develop
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
65 deletions
static/js/cart/cart.js
static/js/cart/good.js
template/m.yohobuy.com/actions/cart/index/index.phtml
static/js/cart/cart.js
View file @
c5ac106
...
...
@@ -13,35 +13,37 @@ var chosePanel = require('./chose-panel');
var
$cartContent
=
$
(
'.cart-content'
);
var
navHammer
,
cartType
=
'ordinary'
;
cartType
=
$
(
'#cartType'
).
val
()
;
require
(
'./good'
);
lazyLoad
(
$
(
'img.lazy'
));
navHammer
=
new
Hammer
(
document
.
getElementsByClassName
(
'cart-nav'
)[
0
]);
navHammer
.
on
(
'tap'
,
function
(
e
)
{
var
$this
=
$
(
e
.
target
).
closest
(
'li'
);
if
(
$
(
'.cart-nav'
).
length
>
0
)
{
navHammer
=
new
Hammer
(
document
.
getElementsByClassName
(
'cart-nav'
)[
0
]);
navHammer
.
on
(
'tap'
,
function
(
e
)
{
var
$this
=
$
(
e
.
target
).
closest
(
'li'
);
if
(
$this
.
hasClass
(
'active'
))
{
return
;
}
if
(
$this
.
hasClass
(
'active'
))
{
return
;
}
if
(
cartType
===
'ordinary'
)
{
cartType
=
'advance'
;
}
else
{
cartType
=
'ordinary'
;
}
if
(
cartType
===
'ordinary'
)
{
cartType
=
'advance'
;
}
else
{
cartType
=
'ordinary'
;
}
$this
.
siblings
(
'.active'
).
removeClass
(
'active'
);
$this
.
addClass
(
'active'
);
$this
.
siblings
(
'.active'
).
removeClass
(
'active'
);
$this
.
addClass
(
'active'
);
//切换普通商品和预售商品购物车显示
$cartContent
.
toggleClass
(
'hide'
);
//切换普通商品和预售商品购物车显示
$cartContent
.
toggleClass
(
'hide'
);
//trigger lazyload
$
(
window
).
trigger
(
'scroll'
);
});
//trigger lazyload
$
(
window
).
trigger
(
'scroll'
);
});
}
$
(
'.btn-balance'
).
on
(
'touchend'
,
function
()
{
window
.
location
.
href
=
'/cart/index/orderEnsure?cartType='
+
cartType
;
...
...
static/js/cart/good.js
View file @
c5ac106
...
...
@@ -13,9 +13,9 @@ var dialog = require('../me/dialog'),
tip
=
require
(
'../plugin/tip'
);
var
$names
,
$selectAllBtn
=
$
(
'.balance .iconfont'
);
var
requesting
=
false
;
$selectAllBtn
=
$
(
'.balance .iconfont'
),
cartType
=
$
(
'#cartType'
).
val
(),
requesting
=
false
;
ellipsis
.
init
();
...
...
@@ -29,20 +29,6 @@ if ($names.length > 0) {
$names
[
0
].
mlellipsis
(
2
);
}
//获取当前购物车类型
function
getCartType
()
{
var
$navItem
=
$
(
'.cart-nav '
).
find
(
'li'
),
type
=
'ordinary'
;
if
(
$navItem
.
eq
(
0
).
hasClass
(
'active'
))
{
type
=
'ordinary'
;
}
else
{
type
=
'advance'
;
}
return
type
;
}
//TIP:事件委托在.cart-goods,商品列表的容器统一需要有.cart-goods
$
(
'.cart-goods'
).
on
(
'touchstart'
,
'.checkbox'
,
function
()
{
var
$this
=
$
(
this
),
...
...
@@ -95,13 +81,24 @@ $('.cart-goods').on('touchstart', '.checkbox', function() {
},
success
:
function
(
data
)
{
if
(
data
)
{
$
(
'#good-totalprice'
).
html
(
'¥'
+
data
.
commonCart
.
price
);
$
(
'#good-activityPrice'
).
html
(
'¥'
+
data
.
commonCart
.
activityPrice
);
$
(
'#good-total'
).
html
(
'总计:¥'
+
data
.
commonCart
.
sumPrice
+
' ('
+
data
.
commonCart
.
count
+
'件)'
);
if
(
data
.
commonCart
.
isAllSelected
)
{
$
(
'.balance span'
).
removeClass
(
'icon-checkbox'
).
addClass
(
'icon-cb-checked'
);
if
(
cartType
===
'ordinary'
)
{
$
(
'#good-totalprice'
).
html
(
'¥'
+
data
.
commonCart
.
price
);
$
(
'#good-activityPrice'
).
html
(
'¥'
+
data
.
commonCart
.
activityPrice
);
$
(
'#good-total'
).
html
(
'总计:¥'
+
data
.
commonCart
.
sumPrice
+
' ('
+
data
.
commonCart
.
count
+
'件)'
);
if
(
data
.
commonCart
.
isAllSelected
)
{
$
(
'.balance span'
).
removeClass
(
'icon-checkbox'
).
addClass
(
'icon-cb-checked'
);
}
else
{
$
(
'.balance span'
).
removeClass
(
'icon-cb-checked'
).
addClass
(
'icon-checkbox'
);
}
}
else
{
$
(
'.balance span'
).
removeClass
(
'icon-cb-checked'
).
addClass
(
'icon-checkbox'
);
$
(
'#good-totalprice'
).
html
(
'¥'
+
data
.
preSellCart
.
price
);
$
(
'#good-activityPrice'
).
html
(
'¥'
+
data
.
preSellCart
.
activityPrice
);
$
(
'#good-total'
).
html
(
'总计:¥'
+
data
.
preSellCart
.
sumPrice
+
' ('
+
data
.
preSellCart
.
count
+
'件)'
);
if
(
data
.
preSellCart
.
isAllSelected
)
{
$
(
'.balance span'
).
removeClass
(
'icon-checkbox'
).
addClass
(
'icon-cb-checked'
);
}
else
{
$
(
'.balance span'
).
removeClass
(
'icon-cb-checked'
).
addClass
(
'icon-checkbox'
);
}
}
}
},
...
...
@@ -115,26 +112,6 @@ $('.cart-goods').on('touchstart', '.checkbox', function() {
}).
fail
(
function
()
{
tip
.
show
(
'网络错误'
);
});
}).
on
(
'touchstart'
,
'.icon-edit'
,
function
()
{
//var $this = $(this);
//
//var $cartgood = $this.closest('.shopping-cart-good');
//
////var id = $this.closest('.shopping-cart-good').data('id');
//
//var $viewGood = $cartgood.find('.deps');
// $editGoot = $cartgood.find('.calculate-num');
//
//if ($viewGood.hasClass('show')) {
// $viewGood.removeClass('show').addClass('hide');
// $editGoot.removeClass('hide').addClass('show');
//} else {
// $viewGood.removeClass('hide').addClass('show');
// $editGoot.removeClass('show').addClass('hide');
//}
}).
on
(
'touchstart'
,
'.icon-del'
,
function
(
e
)
{
var
$this
=
$
(
this
);
...
...
@@ -274,7 +251,7 @@ function willBeSelected($this) {
//全选按钮点击事件
$selectAllBtn
.
on
(
'touchend'
,
function
()
{
var
$this
=
$
(
this
);
bottomCheckBoxHandeler
(
willBeSelected
(
$this
),
getCartType
()
,
didUpdateAllGoodsCheckStatus
);
bottomCheckBoxHandeler
(
willBeSelected
(
$this
),
cartType
,
didUpdateAllGoodsCheckStatus
);
});
$
(
'.down'
).
on
(
'touchend'
,
function
()
{
...
...
template/m.yohobuy.com/actions/cart/index/index.phtml
View file @
c5ac106
...
...
@@ -58,8 +58,7 @@
</div>
{
{/if
}
}
<input
id=
"cartType"
type=
"hidden"
value=
"{{cartType}}"
>
{
{/
shoppingCart
}
}
{
{>
cart/chose-panel
}
}
...
...
Please
register
or
login
to post a comment