jsonMark.ts 211 B

1234567
  1. import { httpApp } from "@/plugins/axiosApp";
  2. import { Question } from "@/types";
  3. /** 清理复核任务 */
  4. export async function getJSON(url: string) {
  5. return httpApp.get(url, { withCredentials: false });
  6. }