107 lines
2.5 KiB
TypeScript
107 lines
2.5 KiB
TypeScript
import request from '@/utils/request';
|
|
import type { ApiResult, PageResult } from '@/api';
|
|
import type { ShopOrderInfo, ShopOrderInfoParam } from './model';
|
|
import { MODULES_API_URL } from '@/config/setting';
|
|
|
|
/**
|
|
* 分页查询场地
|
|
*/
|
|
export async function pageShopOrderInfo(params: ShopOrderInfoParam) {
|
|
const res = await request.get<ApiResult<PageResult<ShopOrderInfo>>>(
|
|
MODULES_API_URL + '/mall/shop-order-info/page',
|
|
{
|
|
params
|
|
}
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 查询场地列表
|
|
*/
|
|
export async function listShopOrderInfo(params?: ShopOrderInfoParam) {
|
|
const res = await request.get<ApiResult<ShopOrderInfo[]>>(
|
|
MODULES_API_URL + '/mall/shop-order-info',
|
|
{
|
|
params
|
|
}
|
|
);
|
|
if (res.data.code === 0 && res.data.data) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 添加场地
|
|
*/
|
|
export async function addShopOrderInfo(data: ShopOrderInfo) {
|
|
const res = await request.post<ApiResult<unknown>>(
|
|
MODULES_API_URL + '/mall/shop-order-info',
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 修改场地
|
|
*/
|
|
export async function updateShopOrderInfo(data: ShopOrderInfo) {
|
|
const res = await request.put<ApiResult<unknown>>(
|
|
MODULES_API_URL + '/mall/shop-order-info',
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 删除场地
|
|
*/
|
|
export async function removeShopOrderInfo(id?: number) {
|
|
const res = await request.delete<ApiResult<unknown>>(
|
|
MODULES_API_URL + '/mall/shop-order-info/' + id
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 批量删除场地
|
|
*/
|
|
export async function removeBatchShopOrderInfo(data: (number | undefined)[]) {
|
|
const res = await request.delete<ApiResult<unknown>>(
|
|
MODULES_API_URL + '/mall/shop-order-info/batch',
|
|
{
|
|
data
|
|
}
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 根据id查询场地
|
|
*/
|
|
export async function getShopOrderInfo(id: number) {
|
|
const res = await request.get<ApiResult<ShopOrderInfo>>(
|
|
MODULES_API_URL + '/mall/shop-order-info/' + id
|
|
);
|
|
if (res.data.code === 0 && res.data.data) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|