You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
639 B

  1. import { createAPI } from '@/utils/httpRequest.js'
  2. // 功能代办中心:查询统计
  3. export const getTodoCenterStats = data => createAPI('schedule/getTodoCenterStats', 'POST', data)
  4. // 功能代办中心:分页查询代办列表
  5. export const searchTodoCenterList = data => createAPI('schedule/searchTodoCenterList', 'POST', data)
  6. // 功能代办中心:查询创建分卷缓存详情
  7. export const getTodoCacheDetail = data => createAPI('schedule/shiftChange/getUnprocessedData', 'POST', data)
  8. // 功能代办中心:审核代办消息
  9. export const auditTodoMessage = data => createAPI('schedule/auditTodoMessage', 'POST', data)