12345678910111213141516 |
- import { handle } from '../../index'
- const suffix = 'api'
- // 新增
- export const jobCreate = (params: any) => handle({
- url: `/${suffix}/job/create`,
- method: 'post',
- params
- })
- // 分页
- export const jobQuerySysJobQueueByPage = (params: any) => handle({
- url: `/${suffix}/job/querySysJobQueueByPage`,
- method: 'post',
- params
- })
|