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

export const homeMockHandlers = [
  {
    action: 'app_list',
    type: 'volunteer',
    method: 'GET',
    handle: () => buildMockSuccess(getHomeContentFixture(), '首页内容获取成功(当前为 mock 结构)'),
  },
]