You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
814 B
30 lines
814 B
import { config } from '../../config/index';
|
|
|
|
/** 获取商品列表 */
|
|
function mockFetchGoodsList(pageIndex = 1, pageSize = 20) {
|
|
const { delay } = require('../_utils/delay');
|
|
const { getGoodsList } = require('../../model/goods');
|
|
return delay().then(() =>
|
|
getGoodsList(pageIndex, pageSize).map((item) => {
|
|
return {
|
|
spuId: item.spuId,
|
|
thumb: item.primaryImage,
|
|
title: item.title,
|
|
price: item.minSalePrice,
|
|
originPrice: item.maxLinePrice,
|
|
tags: item.spuTagList.map((tag) => tag.title),
|
|
};
|
|
}),
|
|
);
|
|
}
|
|
|
|
/** 获取商品列表 */
|
|
export function fetchGoodsList(pageIndex = 1, pageSize = 20) {
|
|
if (config.useMock) {
|
|
return mockFetchGoodsList(pageIndex, pageSize);
|
|
}
|
|
return new Promise((resolve) => {
|
|
resolve('real api');
|
|
});
|
|
}
|