index.js 401 B

123456789101112131415161718
  1. import request from '@/router/axios'
  2. // 流程记录
  3. export function exampleInfo(data = {}) {
  4. return request({
  5. url: '/api/victoriatourist/service-flow/exampleInfo/record',
  6. method: 'post',
  7. data: data,
  8. })
  9. }
  10. export function exampleInfoShowFlow(data = {}) {
  11. return request({
  12. url: '/api/victoriatourist/service-flow/exampleInfo/showFlow',
  13. method: 'post',
  14. data: data,
  15. })
  16. }