api.js 212 B

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