...
|
...
|
@@ -343,15 +343,23 @@ Cart = { |
|
|
content: msg,
|
|
|
cb: function() {
|
|
|
dialog.close();
|
|
|
Util.ajax({
|
|
|
|
|
|
// 未使用Util.ajax统一处理,此处需要特殊处理
|
|
|
$.ajax({
|
|
|
url: '/shopping/cart/product/send_to_favorite',
|
|
|
type: 'POST',
|
|
|
data: {skuList: JSON.stringify(products)},
|
|
|
success: function(res) {
|
|
|
Util.refreshCart(res, function() {
|
|
|
Stepper.init();
|
|
|
});
|
|
|
data: {skuList: JSON.stringify(products)}
|
|
|
}).then(function(res) {
|
|
|
|
|
|
// 未登录情况下跳转登录页
|
|
|
if (res.code === 400) {
|
|
|
location.href = res.data.refer;
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
Util.refreshCart(res, function() {
|
|
|
Stepper.init();
|
|
|
});
|
|
|
});
|
|
|
}
|
|
|
}).show();
|
...
|
...
|
|