2025-05-13 09:17:47 +00:00
|
|
|
import { http } from '@/utils/http';
|
|
|
|
|
2025-06-20 02:51:47 +00:00
|
|
|
export function getListApi() {
|
2025-05-13 09:17:47 +00:00
|
|
|
return http({
|
|
|
|
url: '/sjgl.scnr/cxcSjSc/queryTreeData',
|
2025-06-20 02:51:47 +00:00
|
|
|
method: 'GET'
|
2025-05-13 09:17:47 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2025-06-20 02:51:47 +00:00
|
|
|
export function getJobDesIdByDepAndName(jobname : string) {
|
2025-05-13 09:17:47 +00:00
|
|
|
return http({
|
|
|
|
url: '/sjgl.tynr/cxcSjJobdescription/queryByNameDep',
|
|
|
|
method: 'GET',
|
2025-06-20 02:51:47 +00:00
|
|
|
data: { jobname }
|
2025-05-13 09:17:47 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2025-05-16 08:03:56 +00:00
|
|
|
export function getPathByInsflagQuote(config : Object) {
|
2025-05-13 09:17:47 +00:00
|
|
|
return http({
|
|
|
|
url: '/sjgl.scnr/cxcSjSc/getPathByInsflagQuote',
|
|
|
|
method: 'GET',
|
|
|
|
data: config
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
export function queryByIdApi(id : string) {
|
|
|
|
return http({
|
|
|
|
url: '/sjgl.scnr/cxcSjSc/queryById',
|
|
|
|
method: 'GET',
|
|
|
|
data: { id }
|
|
|
|
})
|
|
|
|
}
|