...
|
...
|
@@ -202,6 +202,7 @@ orderHammer.on('tap', function(e) { |
|
|
$reaMask.data('orderId', id);
|
|
|
|
|
|
if ($cur.closest('.raffle-btn').length > 0) {
|
|
|
if (isWeiXin()) {
|
|
|
userId = $cur.closest('.raffle-btn').attr('data-uid');
|
|
|
orderCode = $cur.closest('.raffle-btn').attr('data-code');
|
|
|
$.ajax({
|
...
|
...
|
@@ -209,7 +210,6 @@ orderHammer.on('tap', function(e) { |
|
|
url: '/activity/raffle/lucky',
|
|
|
data: {
|
|
|
lotteryId: 20,
|
|
|
userId: userId,
|
|
|
orderCode: orderCode
|
|
|
},
|
|
|
success: function(data) {
|
...
|
...
|
@@ -255,6 +255,10 @@ orderHammer.on('tap', function(e) { |
|
|
tip.show(data.message);
|
|
|
}
|
|
|
});
|
|
|
} else {
|
|
|
tip.show('请在微信端打开,才能参加抽奖');
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if ($cur.closest('.del').length > 0) {
|
...
|
...
|
@@ -448,3 +452,13 @@ $('.dia-c .close').on('click', function() { |
|
|
$('.dia-main a').on('click', function () {
|
|
|
window.location.href = '//m.yohobuy.com/activity/raffle/orders'
|
|
|
});
|
|
|
|
|
|
// 判断是否是微信
|
|
|
function isWeiXin(){
|
|
|
var ua = window.navigator.userAgent.toLowerCase();
|
|
|
if(ua.match(/MicroMessenger/i) == 'micromessenger'){
|
|
|
return true;
|
|
|
} else {
|
|
|
return false;
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|