| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- 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',
- })
- },
-
- mockApplyListApplyBusiness(data) {
- return myRequest({
- url: '/mock/apply/listApplyBusiness',
- method: 'get',
- })
- },
-
- 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',
- })
- },
-
-
-
-
-
-
- }
|