...
|
...
|
@@ -70,6 +70,16 @@ $('#coupon-list').on('touchend', '.employ-main', function() { |
|
|
|
|
|
orderInfo('couponCode', $this.data('coupon-code'));
|
|
|
orderInfo('couponName', $this.data('coupon-name'));
|
|
|
}).on('touchstart', '.employ-main', function() {
|
|
|
var $this = $(this);
|
|
|
|
|
|
$this.siblings().removeClass('focus');
|
|
|
$this.addClass('focus');
|
|
|
}).on('touchend touchcancel', '.employ-main', function() {
|
|
|
var $this = $(this);
|
|
|
|
|
|
$this.siblings().removeClass('focus');
|
|
|
$this.removeClass('focus');
|
|
|
});
|
|
|
|
|
|
$('body').on('touchend', '.not-use', function() {
|
...
|
...
|
|