index.ts 205 B

12345678910
  1. import { http } from '@/utils/http/axios';
  2. // 查询部门信息列表
  3. export function getDeptInfoList() {
  4. return http.request({
  5. url: '/admin/dept/queryDeptPullDownList',
  6. method: 'get',
  7. });
  8. }