Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuywap-node
·
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
QC-L
6 years ago
Commit
38622eaacf1f01eef9a0d86d1e4709c820dcf662
1 parent
3f31ffd3
修复点击删除直接跳转订单详情的 bug
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
public/js/activity/group-order.page.js
public/js/activity/group-order.page.js
View file @
38622ea
...
...
@@ -104,8 +104,6 @@ $('#group-order').on('click', function(e) {
// $refundReaMask.data('orderId', id);
if
(
$cur
.
closest
(
'.list-cell-content'
).
length
>
0
)
{
window
.
location
.
href
=
`
/
home
/
orderdetail
?
order_code
=
$
{
id
}
`
;
}
else
if
(
$cur
.
closest
(
'.list-cell-footer'
).
length
>
0
)
{
window
.
location
.
href
=
`
/
home
/
orderdetail
?
order_code
=
$
{
id
}
`
;
}
else
if
(
$cur
.
closest
(
'.del'
).
length
>
0
)
{
// Order delete
...
...
@@ -171,6 +169,8 @@ $('#group-order').on('click', function(e) {
// $reaMask.css('visibility', 'visible');
});
}
else
if
(
$cur
.
closest
(
'.list-cell-footer'
).
length
>
0
)
{
window
.
location
.
href
=
`
/
home
/
orderdetail
?
order_code
=
$
{
id
}
`
;
}
});
...
...
Please
register
or
login
to post a comment