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
976d5a4f3a509f51cdfc315f119538b14845a76f
2 parents
f39a7285
bbc01df3
Merge branch 'develop' of git.dev.yoho.cn:web/yohobuy into develop
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
16 deletions
static/js/cart/cart.js
static/js/cart/good.js
static/js/passport/bind/bind.js
yohobuy/m.yohobuy.com/application/controllers/Home.php
static/js/cart/cart.js
View file @
976d5a4
...
...
@@ -12,12 +12,13 @@ var chosePanel = require('./chose-panel'),
dialog
=
require
(
'../me/dialog'
),
tip
=
require
(
'../plugin/tip'
);
var
$cartContent
=
$
(
'.cart-content'
);
var
$cartContent
=
$
(
'.cart-content'
),
cartType
=
$
(
'#cartType'
).
val
(),
hasShowCartPresellTip
=
false
;
var
navHammer
,
advanceBuyHammer
,
freebieHammer
,
cartType
=
$
(
'#cartType'
).
val
();
freebieHammer
;
var
hasChecked
=
$
(
'.cart-content:not(.hide) .icon-cb-checked'
).
length
>
0
?
true
:
false
;
//是否有选中商品
...
...
@@ -67,6 +68,11 @@ require('./good');
lazyLoad
(
$
(
'img.lazy'
));
if
(
typeof
window
.
cookie
===
'function'
&&
'y'
===
window
.
cookie
(
'_hasShowCartPresellTip'
))
{
$
(
'#presell-tip'
).
addClass
(
'hide'
);
hasShowCartPresellTip
=
true
;
}
if
(
'advance'
===
cartType
)
{
$cartContent
.
toggleClass
(
'hide'
);
$
(
'presell-cart-nav'
).
addClass
(
'active'
);
...
...
@@ -102,9 +108,12 @@ if ($('.cart-nav').length > 0) {
$
(
window
).
trigger
(
'scroll'
);
});
setTimeout
(
function
()
{
$
(
'#presell-tip'
).
addClass
(
'hide'
);
},
3000
);
if
(
!
hasShowCartPresellTip
)
{
setTimeout
(
function
()
{
$
(
'#presell-tip'
).
addClass
(
'hide'
);
window
.
setCookie
(
'_hasShowCartPresellTip'
,
'y'
);
},
3000
);
}
}
if
(
$
(
'.advance-buy'
).
length
>
0
)
{
...
...
@@ -121,14 +130,6 @@ if ($('.freebie').length > 0) {
});
}
//$('.advance-buy').on('touchend', function() {
// window.location.href = '/cart/index/advanceBuy?cartType=' + cartType;
//});
//
//$('.freebie').on('touchend', function() {
// window.location.href = '/cart/index/gift?cartType=' + cartType;
//});
$
(
'.btn-balance'
).
on
(
'touchend'
,
function
()
{
if
(
shouldSelectGift
())
{
showChooseGifDialog
();
...
...
static/js/cart/good.js
View file @
976d5a4
...
...
@@ -42,6 +42,11 @@ $('.cart-goods').on('touchstart', '.checkbox', function() {
var
goodsList
=
[],
goodInfo
=
{};
if
(
!
$this
.
hasClass
(
'icon-cb-checked'
)
&&
$this
.
siblings
(
'.info'
).
find
(
'.low-stocks'
).
length
>
0
)
{
tip
.
show
(
'库存不足,无法购买'
);
return
false
;
}
goodInfo
.
goods_type
=
$
(
'#cartType'
).
val
();
goodInfo
.
selected
=
$this
.
hasClass
(
'icon-cb-checked'
)
?
'N'
:
'Y'
;
goodInfo
.
product_sku
=
id
;
...
...
static/js/passport/bind/bind.js
View file @
976d5a4
...
...
@@ -28,6 +28,7 @@ function nextStep(url, mobileNo, areaCode) {
}
requested
=
true
;
$btnNext
.
addClass
(
'disable'
).
html
(
'绑定中...'
);
$
.
ajax
({
type
:
'POST'
,
...
...
@@ -37,11 +38,13 @@ function nextStep(url, mobileNo, areaCode) {
areaCode
:
areaCode
.
replace
(
'+'
,
''
)
},
success
:
function
(
res
)
{
console
.
log
(
res
.
data
);
// console.log(res.data);
location
.
href
=
url
;
},
error
:
function
()
{
tip
.
show
(
'出错了,请重试!'
);
$btnNext
.
removeClass
(
'disable'
).
html
(
'下一步'
);
requested
=
false
;
}
});
...
...
@@ -86,7 +89,8 @@ $btnNext.on('touchstart', function() {
nickname
:
nickname
},
success
:
function
(
res
)
{
console
.
log
(
res
);
// console.log(res);
//res : {
// code: 'xxx',
...
...
yohobuy/m.yohobuy.com/application/controllers/Home.php
View file @
976d5a4
...
...
@@ -867,6 +867,7 @@ class HomeController extends AbstractAction
$this
->
_view
->
display
(
'help'
,
array
(
'iHelp'
=>
Home\HelpModel
::
serviceInfo
(),
'pageFooter'
=>
true
));
}
...
...
@@ -886,6 +887,7 @@ class HomeController extends AbstractAction
$this
->
_view
->
display
(
'help-detail'
,
array
(
'iHelp'
=>
Home\HelpModel
::
serviceDetail
(
$code
),
'pageFooter'
=>
true
));
}
...
...
Please
register
or
login
to post a comment