Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
梁志锋
9 years ago
Commit
db8dedd0586bdde0e29280312280f46ec15fd215
2 parents
fd4779c9
014000ae
merge develop/wap
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletions
static/js/me/pay.js
static/sass/layout/_header.scss
static/js/me/pay.js
View file @
db8dedd
...
...
@@ -137,6 +137,16 @@ function showPage() {
$
(
'.payapp-list'
).
css
(
'visibility'
,
'visible'
);
}
function
bindTouchedEvent
()
{
var
$boxs
=
$
(
'.box'
);
$boxs
.
on
(
'touchstart'
,
function
(
e
)
{
$
(
this
).
addClass
(
'bytouch'
);
}).
on
(
'touchend touchcancel'
,
function
()
{
$boxs
.
removeClass
(
'bytouch'
);
});
}
if
(
wxHammer
)
{
wxHammer
.
on
(
'tap'
,
function
()
{
callpay
(
theOrderCode
);
...
...
@@ -148,6 +158,7 @@ function main() {
loading
.
hideLoadingMask
();
showPage
();
loadIcon
();
bindTouchedEvent
();
}
loading
.
showLoadingMask
();
...
...
static/sass/layout/_header.scss
View file @
db8dedd
...
...
@@ -130,7 +130,6 @@
z-index
:
2
;
position
:
relative
;
&
.boys
{
@include
background-image
(
linear-gradient
(
#323232
,
#414141
));
}
...
...
Please
register
or
login
to post a comment