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