123456789101112131415161718 |
- import request from '@/router/axios'
- // 流程记录
- export function exampleInfo(data = {}) {
- return request({
- url: '/api/victoriatourist/service-flow/exampleInfo/record',
- method: 'post',
- data: data,
- })
- }
- export function exampleInfoShowFlow(data = {}) {
- return request({
- url: '/api/victoriatourist/service-flow/exampleInfo/showFlow',
- method: 'post',
- data: data,
- })
- }
|