api.js 210 B

123456789
  1. import { httpNoAuth } from "@/plugins/axiosNoAuth";
  2. export function getSchoolInfo(schoolCode) {
  3. return httpNoAuth.post(
  4. "/api/admin/download/package",
  5. {},
  6. { params: { code: schoolCode } }
  7. );
  8. }