...
|
...
|
@@ -1558,6 +1558,11 @@ $(function() { |
|
|
|
|
|
// 套餐点击事件
|
|
|
$('.package-box').on('click', '#buy-detail', function() {
|
|
|
if (!window.getUid()) {
|
|
|
window.location.href = window.location.href + '#package';
|
|
|
return window.jumpUrl(window.signinUrl());
|
|
|
}
|
|
|
|
|
|
var isSingle = true,
|
|
|
singleSkuList = [];
|
|
|
|
...
|
...
|
@@ -1573,10 +1578,6 @@ $('.package-box').on('click', '#buy-detail', function() { |
|
|
|
|
|
// 如果只有套餐中商品,都只有一个颜色一个尺码,就直接跳转结算页
|
|
|
if (isSingle) {
|
|
|
if (!window.getUid()) {
|
|
|
return window.jumpUrl(window.signinUrl());
|
|
|
}
|
|
|
|
|
|
window.location.href = '//www.yohobuy.com/cart/easypay?bundle=' +
|
|
|
pkgData.bundleId + '&sku=' + singleSkuList.join(',');
|
|
|
return true;
|
...
|
...
|
@@ -1682,6 +1683,7 @@ $('.package-box').on('click', '#buy-detail', function() { |
|
|
// 立即购买跳转
|
|
|
pkgDialog.$el.on('click', '#pay-pkg', function() {
|
|
|
if (!window.getUid()) {
|
|
|
window.location.href = window.location.href + '#package';
|
|
|
return window.jumpUrl(window.signinUrl());
|
|
|
}
|
|
|
|
...
|
...
|
|