...
|
...
|
@@ -599,7 +599,7 @@ const getBrandIntro = (brandId, uid) => { |
|
|
code: 200,
|
|
|
cache: true
|
|
|
}).then(result => {
|
|
|
|
|
|
if (result && result.data) {
|
|
|
let list = result.data;
|
|
|
|
|
|
return {
|
...
|
...
|
@@ -608,7 +608,9 @@ const getBrandIntro = (brandId, uid) => { |
|
|
collected: list.is_favorite && list.is_favorite === 'Y',
|
|
|
title: list.brand_name ? list.brand_name : ''
|
|
|
};
|
|
|
|
|
|
} else {
|
|
|
return false;
|
|
|
}
|
|
|
});
|
|
|
};
|
|
|
|
...
|
...
|
@@ -650,7 +652,7 @@ const getBrandLogoByDomain = (domain) => { |
|
|
code: 200,
|
|
|
cache: true
|
|
|
}).then(result => {
|
|
|
if (result.data) {
|
|
|
if (result && result.data) {
|
|
|
let formatData = result.data;
|
|
|
|
|
|
return {
|
...
|
...
|
|