Authored by 毕凯

Merge remote-tracking branch 'origin/feature/shopEntry' into gray

... ... @@ -201,6 +201,9 @@ class ProductListWithFilter {
type: 'GET',
url: this.filterUrl,
data: this.filterParams,
xhrFields: {
withCredentials: true
},
success: (data) => {
if (!data) {
return false;
... ...
... ... @@ -109,6 +109,9 @@ let defaultOpt = require('common/query-param');
order: '0',
channel: defaultOpt.channel
},
xhrFields: {
withCredentials: true
},
success: function(data) {
$('.shop-index').after(data);
... ...
... ... @@ -578,6 +578,9 @@ $.ajax({
type: 'GET',
url: location.protocol + '//m.yohobuy.com/product/search/filter',
data: defaultOpt,
xhrFields: {
withCredentials: true
},
success: function(data) {
$goodsContainer.append(data);
... ...