path.ts 260 B

1234567891011
  1. import { http } from "@/utils/http";
  2. type Result = {
  3. success: boolean;
  4. items?: Array<any>;
  5. dict?: { [key: string | number]: any };
  6. };
  7. export const fetchHisPath = (data?: object) => {
  8. return http.request<Result>("post", "/api/path/his", { data });
  9. };