123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import {
- myRequest
- } from '../request.js'
- export default {
- //新增用户预约考试
- addApply(data) {
- return myRequest({
- // url: '/apply',
- url: '/apply/save',
- method: 'post',
- data: data
- })
- },
- //修改用户预约考试
- editApply(data) {
- return myRequest({
- url: '/apply/edit',
- method: 'post',
- data: data
- })
- },
- //查询报考数据列表
- getApplylist(data) {
- return myRequest({
- url: '/apply/list',
- method: 'get',
- data: data
- })
- },
- //点击预约报考按钮
- getApplysubscribe(data) {
- return myRequest({
- url: '/apply/subscribe',
- method: 'get',
- data: data
- })
- },
- //获得考试的考试地点
- getApplysubscribeApplySite(data) {
- return myRequest({
- url: '/apply/subscribeApplySite',
- method: 'get',
- data: data
- })
- },
- //获得考试的考培地点
- getApplysubscribeApplySiteTrain(data) {
- return myRequest({
- url: '/apply/subscribeApplySiteTrain',
- method: 'get',
- data: data
- })
- },
- //预约报考下一步按钮 1 进入有考陪有考试地点得预约考试 2进入无考陪有考试地点预约考试 3无考试次数购买商品
- getApplysubscribeNext(data) {
- return myRequest({
- url: '/apply/subscribeNext',
- method: 'get',
- data: data
- })
- }
-
- }
|