123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- import request from '@/axios'
- export default {
- mockApplyListApply(data) {
- return request({
- url: '/mock/apply/listApply',
- method: 'get',
- params: data
- })
- },
-
- userSubscribe(data) {
- return request({
- url: '/user/subscribe/'+data,
- method: 'get',
- })
- },
-
- mockApplyListApplyBusiness(data) {
- return request({
- url: '/mock/apply/listApplyBusiness',
- method: 'get',
- })
- },
- mockSubscribe(data) {
- return request({
- url: '/mock/subscribe',
- method: 'post',
- data
- })
- },
-
- mockSubscribeListSubscribe(data) {
- return request({
- url: '/mock/subscribe/listSubscribe',
- method: 'GET',
- params:data
- })
- },
-
- mockRecord(data) {
- return request({
- url: '/mock/record',
- method: 'post',
- data
- })
- },
-
- mockRecordEdit(data) {
- return request({
- url: '/mock/record/edit',
- method: 'post',
- data
- })
- },
-
- mockWrongRecordWrongNum(data) {
- return request({
- url:`/mock/wwrong/record/wrongNum/${data}`,
- method: 'get'
- })
- },
- mockReport(data) {
- return request({
- url: '/mock/record/'+data,
- method: 'get',
- })
- },
-
- mockWrongRecord(data) {
- return request({
- url: '/mock/wwrong/record',
- data:data,
- method: 'POST',
- })
- },
-
-
- mockSubscribeEdit(data) {
- return request({
- url: '/mock/subscribe/edit',
- data:data,
- method: 'POST',
- })
- },
-
-
- mockApplyListMockLive(data) {
- return request({
- url: '/mock/apply/listMockLive',
- params:data,
- method: 'get',
- })
- },
- mockSubscribeInfo(data) {
- return request({
- url: '/mock/subscribe/info/'+data,
- method: 'get',
- })
- },
-
- mockApplyListApplyName(data) {
- return request({
- url: '/mock/apply/listApplyName',
- method: 'get',
- params:data
- })
- },
- mockRecordGroupList(data) {
- return request({
- url: '/mock/record/group_list',
- method: 'get',
- params:data
- })
- },
-
- mockRecordList(data) {
- return request({
- url: '/mock/record/list',
- method: 'get',
- params:data
- })
- },
-
- }
|