...
|
...
|
@@ -38,7 +38,7 @@ let _getBannerData = () => { |
|
|
const _getBestList = () => {
|
|
|
return liveAPI.get('v1/living/best', {}, {
|
|
|
code: 200,
|
|
|
cache: true
|
|
|
cache: false
|
|
|
}).then(result => {
|
|
|
let list = result.data;
|
|
|
|
...
|
...
|
@@ -67,7 +67,7 @@ const _getBestList = () => { |
|
|
const _getLivingList = () => {
|
|
|
return liveAPI.get('v1/living/listing', {}, {
|
|
|
code: 200,
|
|
|
cache: true
|
|
|
cache: false
|
|
|
}).then(result => {
|
|
|
return result.data ? result.data : [];
|
|
|
});
|
...
|
...
|
@@ -77,7 +77,7 @@ const _getLivingList = () => { |
|
|
const _getPrelivingList = () => {
|
|
|
return liveAPI.get('v1/living/starting', {}, {
|
|
|
code: 200,
|
|
|
cache: true
|
|
|
cache: false
|
|
|
}).then(result => {
|
|
|
let list = result.data;
|
|
|
|
...
|
...
|
@@ -92,7 +92,7 @@ const _getPrelivingList = () => { |
|
|
const _getRecordList = () => {
|
|
|
return liveAPI.get('v1/living/replaying', {}, {
|
|
|
code: 200,
|
|
|
cache: true
|
|
|
cache: false
|
|
|
}).then(result => {
|
|
|
return result.data ? result.data : [];
|
|
|
});
|
...
|
...
|
|