Merge branch 'main' of http://49.232.154.205:10100/liujingchao/fad_oa
This commit is contained in:
9
ruoyi-ui/src/api/hrm/myApply.js
Normal file
9
ruoyi-ui/src/api/hrm/myApply.js
Normal file
@@ -0,0 +1,9 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export function listMyApply(query) {
|
||||
return request({
|
||||
url: '/hrm/my-apply/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
18
ruoyi-ui/src/api/oa/projectCompare.js
Normal file
18
ruoyi-ui/src/api/oa/projectCompare.js
Normal file
@@ -0,0 +1,18 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export function listTravelCompare (start, end, nickName, workPlace, pageNum, pageSize) {
|
||||
return request({
|
||||
url: '/oa/projectReport/travel-compare',
|
||||
method: 'get',
|
||||
params: {
|
||||
...(start ? { start } : {}),
|
||||
...(end ? { end } : {}),
|
||||
...(nickName ? { nickName } : {}),
|
||||
...(workPlace ? { workPlace } : {}),
|
||||
pageNum,
|
||||
pageSize,
|
||||
orderByColumn: 'compareDate',
|
||||
isAsc: 'desc'
|
||||
}
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user