...
|
...
|
@@ -36,6 +36,8 @@ const _packageAd = (params) => { |
|
|
gender: 1,
|
|
|
limit: 1000,
|
|
|
page: 1
|
|
|
}, {
|
|
|
cache: true
|
|
|
}).then(result => {
|
|
|
|
|
|
return result;
|
...
|
...
|
@@ -49,7 +51,10 @@ const _packageList = (params) => { |
|
|
method: 'app.brand.newBrandList',
|
|
|
yh_channel: params.channel
|
|
|
|
|
|
}, { code: 200 }).then(result => {
|
|
|
}, {
|
|
|
cache: true,
|
|
|
code: 200
|
|
|
}).then(result => {
|
|
|
|
|
|
return result;
|
|
|
|
...
|
...
|
@@ -269,7 +274,10 @@ const getBrandForSearch = (channel) => { |
|
|
method: 'app.brand.brandlist',
|
|
|
yh_channel: channel || 1
|
|
|
|
|
|
}, { code: 200 }).then(result => {
|
|
|
}, {
|
|
|
cache: true,
|
|
|
code: 200
|
|
|
}).then(result => {
|
|
|
|
|
|
return result;
|
|
|
|
...
|
...
|
@@ -289,7 +297,9 @@ const branchSearchHistory = (params) => { |
|
|
uid: params.uid,
|
|
|
records: params.records || ''
|
|
|
|
|
|
}, { code: 200 }).then(result => {
|
|
|
}, {
|
|
|
code: 200
|
|
|
}).then(result => {
|
|
|
|
|
|
return result;
|
|
|
|
...
|
...
|
@@ -316,7 +326,10 @@ const branchSearchHot = () => { |
|
|
return api.get('', {
|
|
|
method: 'app.search.hotBrands'
|
|
|
|
|
|
}, { code: 200 }).then(result => {
|
|
|
}, {
|
|
|
cache: true,
|
|
|
code: 200
|
|
|
}).then(result => {
|
|
|
|
|
|
return result;
|
|
|
|
...
|
...
|
|