| 123456789101112131415161718 |
- import { config } from '../../config/index';
- /** 获取商品评论数 */
- function mockFetchCommentsCount(ID = 0) {
- const { delay } = require('../_utils/delay');
- const { getGoodsCommentsCount } = require('../../model/comments');
- return delay().then(() => getGoodsCommentsCount(ID));
- }
- /** 获取商品评论数 */
- export function fetchCommentsCount(ID = 0) {
- if (config.useMock) {
- return mockFetchCommentsCount(ID);
- }
- return new Promise((resolve) => {
- resolve('real api');
- });
- }
|