home.mock.js 321 Bytes
import { getHomeContentFixture } from '../fixtures/home.fixture'
import { buildMockSuccess } from '../shared/response'

export const homeMockHandlers = [
  {
    action: 'home',
    type: 'content',
    method: 'GET',
    handle: () => buildMockSuccess(getHomeContentFixture(), '首页内容获取成功 (mock)'),
  },
]