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
Email Patches
Plain Diff
Browse Files
Authored by
毕凯
9 years ago
Commit
f3cdc9ba4a1989cf23adb6a6ec97545de2730e8e
1 parent
d2b234a0
删除订单提醒修改
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
10 deletions
static/js/me/order-detail.js
static/js/me/order-detail.js
View file @
f3cdc9b
...
...
@@ -42,13 +42,10 @@ optHammer.on('tap', function(e) {
}).
then
(
function
(
res
)
{
$
(
'#dialog-wrapper'
).
hide
();
if
(
!
res
)
{
tip
.
show
(
'网络错误'
);
return
;
}
if
(
res
.
code
===
200
)
{
tip
.
show
(
'删除成功'
);
}
else
{
tip
.
show
(
res
.
message
||
'网络错误'
);
if
(
res
.
message
)
{
tip
.
show
(
res
.
message
);
}
window
.
location
.
href
=
'/home/orders'
;
}).
fail
(
function
()
{
...
...
@@ -74,13 +71,10 @@ optHammer.on('tap', function(e) {
}).
then
(
function
(
res
)
{
$
(
'#dialog-wrapper'
).
hide
();
if
(
!
res
)
{
tip
.
show
(
'网络错误'
);
return
;
}
if
(
res
.
code
===
200
)
{
tip
.
show
(
'取消成功'
);
}
else
{
tip
.
show
(
res
.
message
||
'网络错误'
);
if
(
res
.
message
)
{
tip
.
show
(
res
.
message
);
}
window
.
location
.
href
=
'/home/orders'
;
}).
fail
(
function
()
{
...
...
Please
register
or
login
to post a comment