cxc-szcx-uniapp/api/depart.js

23 lines
397 B
JavaScript
Raw Normal View History

2024-09-24 09:21:34 +00:00
import {
https
} from '@/utils/http.js';
export function queryDepByCode(code) { // 获取部门数据
return https({
url: '/sys/sysDepart/queryDepNameByDepCode',
method: 'get',
data: {
code
}
})
2024-12-06 01:00:15 +00:00
}
export function queryZbDepByLdhth(ldhth) { // 获取人员主表中人员部门
return https({
url: '/sys/sysDepart/queryZbDepByLdhth',
method: 'get',
data: {
ldhth
}
})
2024-09-24 09:21:34 +00:00
}