21 lines
564 B
JavaScript
21 lines
564 B
JavaScript
|
import { config } from '../../config/index';
|
||
|
|
||
|
/** 获取活动列表 */
|
||
|
function mockFetchActivityList(pageIndex = 1, pageSize = 20) {
|
||
|
const { delay } = require('../_utils/delay');
|
||
|
const { getActivityList } = require('../../model/activities');
|
||
|
|
||
|
return delay().then(() => getActivityList(pageIndex, pageSize));
|
||
|
}
|
||
|
|
||
|
/** 获取活动列表 */
|
||
|
export function fetchActivityList(pageIndex = 1, pageSize = 20) {
|
||
|
if (config.useMock) {
|
||
|
return mockFetchActivityList(pageIndex, pageSize);
|
||
|
}
|
||
|
|
||
|
return new Promise((resolve) => {
|
||
|
resolve('real api');
|
||
|
});
|
||
|
}
|