Toggle navigation
Toggle navigation
This project
Loading...
Sign in
wangshusheng
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to dashboard
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
Rock Zhang
9 years ago
Commit
ec0a6f17356566b058bfee4f558fceb6ed2c5221
1 parent
93662fd2
修复结算页发票点选后,发票抬头与类型不能点选的bug
Code Review By Rock Zhang
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
static/js/cart/order-ensure.js
static/js/cart/order-ensure.js
View file @
ec0a6f1
...
...
@@ -242,10 +242,10 @@ $('.coin').on('touchend', function() {
orderCompute
();
});
$invoice
.
on
(
'touchend'
,
function
(
e
)
{
$invoice
.
on
(
'touchend'
,
'.checkbox'
,
function
(
e
)
{
var
$this
=
$
(
this
);
orderInfo
(
'invoice'
,
$this
.
find
(
'.checkbox'
).
hasClass
(
'icon-cb-checked'
));
orderInfo
(
'invoice'
,
$this
.
hasClass
(
'icon-cb-checked'
));
e
.
preventDefault
();
e
.
stopPropagation
();
});
...
...
Please
register
or
login
to post a comment