system-info.js 322 B

12345678910
  1. import { httpApp } from "@/plugins/axiosIndex";
  2. import { object2QueryString } from "@/utils/utils";
  3. export function uploadFile({ file }) {
  4. return httpApp.post(
  5. "/api/admin/user/query?" + object2QueryString({ type: "frontend" }),
  6. { file: file },
  7. { headers: { "Content-Type": "multipart/form-data" } }
  8. );
  9. }