123456789101112131415 |
- import { LIST_MENU } from '@constants/list'
- import { API_USER_REPORTS } from '@constants/api'
- import { createAction } from '@utils/redux'
- /**
- * 报告列表数据
- * @param {*} payload
- */
- export const getList = payload => createAction({
- url: API_USER_REPORTS,
- type: LIST_MENU,
- payload
- })
|