task.ts 337 B

12345678910111213141516
  1. import { handle } from '../../index'
  2. const suffix = 'api'
  3. // 新增
  4. export const jobCreate = (params: any) => handle({
  5. url: `/${suffix}/job/create`,
  6. method: 'post',
  7. params
  8. })
  9. // 分页
  10. export const jobQuerySysJobQueueByPage = (params: any) => handle({
  11. url: `/${suffix}/job/querySysJobQueueByPage`,
  12. method: 'post',
  13. params
  14. })