jeecgBootUniapp/src/api/pages/sc/index.ts

33 lines
653 B
Vue
Raw Normal View History

2025-05-13 09:17:47 +00:00
import { http } from '@/utils/http';
export function getListApi(orgCode : string) {
return http({
url: '/sjgl.scnr/cxcSjSc/queryTreeData',
method: 'GET',
data: { orgCode }
})
}
2025-05-16 08:03:56 +00:00
export function getJobDesIdByDepAndName(config : Object) {
2025-05-13 09:17:47 +00:00
return http({
url: '/sjgl.tynr/cxcSjJobdescription/queryByNameDep',
method: 'GET',
data: config
})
}
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 }
})
}