Authored by 毕凯

删除订单后 延迟跳转

... ... @@ -47,7 +47,9 @@ optHammer.on('tap', function(e) {
if (res.message) {
tip.show(res.message);
}
window.location.href = '/home/orders';
setTimeout(function() {
window.location.href = '/home/orders';
}, 2000);
}).fail(function() {
tip.show('网络错误');
});
... ... @@ -76,7 +78,9 @@ optHammer.on('tap', function(e) {
if (res.message) {
tip.show(res.message);
}
window.location.href = '/home/orders';
setTimeout(function() {
window.location.href = '/home/orders';
}, 2000);
}).fail(function() {
tip.show('网络错误');
});
... ...
... ... @@ -171,7 +171,9 @@ orderHammer.on('tap', function(e) {
if (data.code === 200) {
//取消订单页面刷新
window.location.reload();
setTimeout(function() {
window.location.reload();
}, 2000);
}
},
error: function() {
... ...