1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| import createAxios from '@/utils/axios'
|
| const workFlowApi = {
| getWorkFlowParams(data: object = {}) : ApiPromise{
| return createAxios({
| baseURL: '/api',
| url: `/approval/templateRelation/relationByType`,
| headers: {
| 'Content-Type': 'application/json;charset=UTF-8'
| },
| data: data
| }) as ApiPromise
| }
| }
| export default workFlowApi
|
|