Sign in

严涛 / energy-management · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • energy-management
  • src
  • api
  • system
  • dept.ts
  • 项目初始化
    f85a61e8
    严涛 authored
    2026-03-23 16:25:30 +0800  
    Browse Files »
dept.ts 195 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10
import axios from "axios";

/**
 * 根据部门编号获取详细信息
 * @param id 部门ID
 * @returns 结果
 */
export function getDept(id: any) {
  return axios.get("/system/dept/" + id);
}