...
|
...
|
@@ -14,7 +14,7 @@ function GetQueryString(name) { |
|
|
|
|
|
$('.get-coupon').click(function () {
|
|
|
var couponId = $(this).attr('param');
|
|
|
isApp = $(this).attr('href') !== 'javascript:;';
|
|
|
isApp = GetQueryString('app_version');
|
|
|
|
|
|
if (isApp) {
|
|
|
uid = GetQueryString('uid');
|
...
|
...
|
@@ -26,7 +26,7 @@ $('.get-coupon').click(function () { |
|
|
});
|
|
|
/* 领所有券 */
|
|
|
$('#get-all-coupon').click(function () {
|
|
|
var isApp = $(this).attr('href') !== 'javascript:;';
|
|
|
isApp = GetQueryString('app_version');
|
|
|
getAllCoupon(activityId, isApp);
|
|
|
});
|
|
|
|
...
|
...
|
|