Blame view

admin-web-master/src/api/oa.js 486 Bytes
a6a3878d   杨鑫   最新绿道
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  import request from '@/utils/request'
  
  // OA 提交代办
  
  export function startOa(data) {
    return request({
      url: '/oaInterconnection/startOa',
      method: 'post',
      data
    })
  }
  //  审核后通知OA
  
  export function examine(data) {
    return request({
      url: '/oaInterconnection/examine',
      method: 'post',
      data
    })
  }
  //  获取任务ID
  
  export function thirdParty(data) {
    return request({
      url: `/oaInterconnection/thirdParty`,
      method: 'post',
      data
    })
  }