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