...
|
...
|
@@ -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() {
|
...
|
...
|
|