jhbigscreen/src/api/flow/index.js

21 lines
440 B
JavaScript
Raw Normal View History

2023-09-22 00:32:31 +08:00
import request from '@/utils/request'
const groupByCategory=(projectId,deptId)=> {
return request({
url: `bgscreen/flow/groupByCategory?projectId=${projectId}&deptId=${deptId}`,
method: 'get'
})
}
const groupByUnit=(projectId,deptId)=> {
return request({
url: `bgscreen/flow/groupByUnit?projectId=${projectId}&deptId=${deptId}`,
method: 'get'
})
}
export default{
groupByCategory,
groupByUnit
}