12345678910111213141516171819202122 |
- import { myRequest } from "../request.js";
- export default {
- getExamDetail(data) {
- return myRequest({
- url: "/bank/exam/" + data,
- method: "get",
- });
- },
- getExamLearnStatus(data) {
- return myRequest({
- url: "/bank/record/check/bank/record",
- data,
- method: "GET",
- });
- },
- getExamTip() {
- return myRequest({
- url: "/apply/before/know",
- method: "GET",
- });
- },
- };
|