Authored by 张丽霞

首页shipId为空时不请求数据, review by Redding

... ... @@ -536,6 +536,9 @@ function fetchShopInfo(data, channel) {
for (let i = 1; i < shopIds.length; i++) {
shopId = shopId + ',' + shopIds[i];
}
if (shopId == '') {
return;
}
dispatch(fetchShopInfoRequest(channelStr));
... ...