Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
郝肖肖
9 years ago
Commit
b5c1b1795a225fef2c1d4d3ea4428e4d33157e5b
1 parent
999eb6ad
事件延时修复
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
static/js/product/shop_coupon.js
static/sass/index.css
static/js/product/shop_coupon.js
View file @
b5c1b17
...
...
@@ -3,18 +3,17 @@ var $ = require('jquery'),
Swiper
=
require
(
'yoho.iswiper'
),
tip
=
require
(
'../plugin/tip'
);
var
isCouponClick
=
true
,
appVersion
=
$
(
'input[name="app_version"]'
).
val
();
var
appVersion
=
$
(
'input[name="app_version"]'
).
val
();
$
(
".coupon-content .receive-btn"
).
closest
(
'.swiper-slide'
).
on
(
'click'
,
function
(
e
)
{
var
that
=
this
,
code
=
$
(
this
).
data
(
'id'
)
||
''
;
if
(
isCouponClick
===
false
)
{
if
(
that
.
isCouponClick
===
false
)
{
return
false
;
}
isCouponClick
=
false
;
that
.
isCouponClick
=
false
;
$
.
ajax
({
method
:
'POST'
,
...
...
@@ -28,7 +27,7 @@ $(".coupon-content .receive-btn").closest('.swiper-slide').on('click', function(
},
success
:
function
(
data
)
{
isCouponClick
=
true
;
that
.
isCouponClick
=
true
;
if
(
data
.
code
===
200
)
{
tip
.
show
(
'领取成功'
);
...
...
@@ -46,7 +45,7 @@ $(".coupon-content .receive-btn").closest('.swiper-slide').on('click', function(
},
error
:
function
()
{
tip
.
show
(
'网络断开连接了~'
);
isCouponClick
=
true
;
that
.
isCouponClick
=
true
;
}
});
});
...
...
static/sass/index.css
View file @
b5c1b17
...
...
@@ -150,6 +150,7 @@ iframe[height="0"] {
border
:
none
;
z-index
:
4
;
border-radius
:
10
PX
;
margin
:
0
auto
;
}
.tap-hightlight
{
...
...
Please
register
or
login
to post a comment