...
|
...
|
@@ -83,22 +83,28 @@ if (goodsDiscountHammer && $discountFolder.children().length > 0) { |
|
|
}
|
|
|
|
|
|
limitSaleHammer && limitSaleHammer.on('tap', function(e) {
|
|
|
var loginUrl = $('#loginUrl').val();
|
|
|
|
|
|
e.srcEvent.stopPropagation();
|
|
|
dialog.showDialog({
|
|
|
dialogText: '打开有货APP限定发售频道\n获取限购码',
|
|
|
hasFooter: {
|
|
|
rightBtnText: '打开Yoho!Buy有货APP'
|
|
|
}
|
|
|
}, function() {
|
|
|
window.location.href = appUrl;
|
|
|
}, undefined, true);
|
|
|
|
|
|
$('.dialog-wrapper').off('touchstart').on('touchstart', function(e) {
|
|
|
e.stopPropagation();
|
|
|
if ($(e.target).hasClass('dialog-wrapper')) {
|
|
|
dialog.hideDialog();
|
|
|
}
|
|
|
});
|
|
|
if(loginUrl) {
|
|
|
window.location = loginUrl;
|
|
|
} else {
|
|
|
dialog.showDialog({
|
|
|
dialogText: '打开有货APP限定发售频道\n获取限购码',
|
|
|
hasFooter: {
|
|
|
rightBtnText: '打开Yoho!Buy有货APP'
|
|
|
}
|
|
|
}, function() {
|
|
|
window.location.href = appUrl;
|
|
|
}, undefined, true);
|
|
|
|
|
|
$('.dialog-wrapper').off('touchstart').on('touchstart', function(e) {
|
|
|
e.stopPropagation();
|
|
|
if ($(e.target).hasClass('dialog-wrapper')) {
|
|
|
dialog.hideDialog();
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
});
|
|
|
|
|
|
require('./desc');
|
...
|
...
|
|