exam.js 427 B

12345678910111213141516171819202122
  1. import { myRequest } from "../request.js";
  2. export default {
  3. getExamDetail(data) {
  4. return myRequest({
  5. url: "/bank/exam/" + data,
  6. method: "get",
  7. });
  8. },
  9. getExamLearnStatus(data) {
  10. return myRequest({
  11. url: "/bank/record/check/bank/record",
  12. data,
  13. method: "GET",
  14. });
  15. },
  16. getExamTip() {
  17. return myRequest({
  18. url: "/apply/before/know",
  19. method: "GET",
  20. });
  21. },
  22. };