0508修改
This commit is contained in:
@@ -14,28 +14,46 @@ export interface EmployeeOutputSummaryExportReqVO {
|
||||
sortType?: string
|
||||
}
|
||||
|
||||
export const exportProjectBudget = (projectId: number) => {
|
||||
return request.download({ url: '/tjt/report/project-budget/export-excel', params: { projectId } })
|
||||
export interface ProjectBudgetExportReqVO {
|
||||
projectId: number
|
||||
year?: number
|
||||
}
|
||||
|
||||
export const exportProjectQuarterOutput = (planningId: number) => {
|
||||
return request.download({
|
||||
url: '/tjt/report/project-quarter-output/export-excel',
|
||||
params: { planningId }
|
||||
})
|
||||
export interface ProjectQuarterOutputExportReqVO {
|
||||
planningId: number
|
||||
year?: number
|
||||
}
|
||||
|
||||
export const exportProjectLeadQuarterOutput = (planningId: number) => {
|
||||
return request.download({
|
||||
url: '/tjt/report/project-lead-quarter-output/export-excel',
|
||||
params: { planningId }
|
||||
})
|
||||
export interface ProjectLeadQuarterOutputExportReqVO {
|
||||
planningId: number
|
||||
year?: number
|
||||
}
|
||||
|
||||
export const exportSpecialtyPersonOutput = (params: {
|
||||
export interface SpecialtyPersonOutputExportReqVO {
|
||||
planningId: number
|
||||
specialtyCode: string
|
||||
}) => {
|
||||
year?: number
|
||||
}
|
||||
|
||||
export const exportProjectBudget = (params: ProjectBudgetExportReqVO) => {
|
||||
return request.download({ url: '/tjt/report/project-budget/export-excel', params })
|
||||
}
|
||||
|
||||
export const exportProjectQuarterOutput = (params: ProjectQuarterOutputExportReqVO) => {
|
||||
return request.download({
|
||||
url: '/tjt/report/project-quarter-output/export-excel',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
export const exportProjectLeadQuarterOutput = (params: ProjectLeadQuarterOutputExportReqVO) => {
|
||||
return request.download({
|
||||
url: '/tjt/report/project-lead-quarter-output/export-excel',
|
||||
params
|
||||
})
|
||||
}
|
||||
|
||||
export const exportSpecialtyPersonOutput = (params: SpecialtyPersonOutputExportReqVO) => {
|
||||
return request.download({ url: '/tjt/report/specialty-person-output/export-excel', params })
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user