1234567891011121314151617181920212223242526272829303132333435 |
- import request from '@/apis/utils/request'
-
- import Qs from 'qs';
- export function pageList(formData) {
- return request({
- url: '/open/activity/pageList',
- data: formData,
- method: 'post',
- // header:{'Content-Type':'application/json'},
- })
- }
- export function edit(id) {
- return request({
- url: '/open/activity/edit/'+id,
- //data: formData,
- method: 'get',
- // header:{'Content-Type':'application/json'},
- })
- }
- export function notesList(id) {
- return request({
- url: '/open/activity/notesList',
- data: {
- activityId:id
- },
- method: 'post',
- // header:{'Content-Type':'application/json'},
- })
- }
|