唐耀东
2021-12-09 3da12323ba999d0af15646e2384a4c18fb414683
src/api/common/common.js
@@ -15,3 +15,35 @@
    method: 'get'
  })
}
// 高校下拉列表
export function listSchool() {
  return request({
    url: '/oa/school/select',
    method: 'get'
  })
}
// 生产批次下拉列表
export function listBatch() {
  return request({
    url: '/oa/batch/select',
    method: 'get'
  })
}
// 用户下拉列表
export function listUser() {
  return request({
    url: '/system/user/select',
    method: 'get'
  })
}
// 通过部门id获取用户表格
export function listUserDept(p) {
  return request({
    url: `/system/user/byDept?deptId=${p.deptId}&pageNum=${p.pageNum}&pageSize=${p.pageSize}`,
    method: 'get'
  })
}