12345678910111213141516171819202122232425262728293031323334 |
- import request from '@/apis/utils/request'
-
- import Qs from 'qs';
- export function editBadge(id) {
- return request({
- url: '/open/cite/editBadge/'+id,
- method: 'get',
- })
- }
- export function pageList(formData) {
- return request({
- url: '/open/cite/pageList',
- data: formData,
- method: 'post',
- // header:{'Content-Type':'application/json'},
- })
- }
- export function getByType(type) {
- var url=""
- if(type=='my'){
- url= '/open/cite/getByIndividualType';
- }else if(type=='team'){
- url= '/open/cite/getByTeamType';
- }
- return request({
- url: url,
- method: 'post',
- })
- }
|