123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import request from '@/utils/request'
- export function bagetFreeQueuingListApi(params) {
- return request({
- url: '/platform-participation-free/getAll',
- method: 'get',
- params
- })
- }
- export function getFreeQueuingDeatilApi(params) {
- return request({
- url: '/platform-participation-free/getById',
- method: 'get',
- params
- })
- }
- export function createFreeQueuingApi(data) {
- return request({
- url: '/platform-participation-free/create',
- method: 'post',
- data
- })
- }
- export function updateFreeQueuingApi(data) {
- return request({
- url: '/platform-participation-free/updateById',
- method: 'post',
- data
- })
- }
- export function deleteFreeQueuingDeatilApi(params) {
- return request({
- url: '/platform-participation-free/deleteById',
- method: 'DELETE',
- params
- })
- }
- export function getFreeQueuingPoolListApi(params) {
- return request({
- url: '/platform-participation-free/getPoolAll',
- method: 'get',
- params
- })
- }
- export function getFreeQueuingPoolDeatilApi(params) {
- return request({
- url: '/platform-participation-free/getPoolById',
- method: 'get',
- params
- })
- }
|