- 将 ApiResult 和 PageResult 类型的导入路径从 '@/api/index' 修改为 '@/api' - 修改了多个文件中的导入语句,以简化 API 结果类型的导入路径
104 lines
2.4 KiB
TypeScript
104 lines
2.4 KiB
TypeScript
import request from '@/utils/request';
|
|
import type { ApiResult, PageResult } from '@/api';
|
|
import type { ShopMerchantCount, ShopMerchantCountParam } from './model';
|
|
|
|
/**
|
|
* 分页查询门店销售统计表
|
|
*/
|
|
export async function pageShopMerchantCount(params: ShopMerchantCountParam) {
|
|
const res = await request.get<ApiResult<PageResult<ShopMerchantCount>>>(
|
|
'/shop/shop-merchant-count/page',
|
|
params
|
|
);
|
|
if (res.code === 0) {
|
|
return res.data;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|
|
|
|
/**
|
|
* 查询门店销售统计表列表
|
|
*/
|
|
export async function listShopMerchantCount(params?: ShopMerchantCountParam) {
|
|
const res = await request.get<ApiResult<ShopMerchantCount[]>>(
|
|
'/shop/shop-merchant-count',
|
|
params
|
|
);
|
|
if (res.code === 0 && res.data) {
|
|
return res.data;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|
|
|
|
/**
|
|
* 添加门店销售统计表
|
|
*/
|
|
export async function addShopMerchantCount(data: ShopMerchantCount) {
|
|
const res = await request.post<ApiResult<unknown>>(
|
|
'/shop/shop-merchant-count',
|
|
data
|
|
);
|
|
if (res.code === 0) {
|
|
return res.message;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|
|
|
|
/**
|
|
* 修改门店销售统计表
|
|
*/
|
|
export async function updateShopMerchantCount(data: ShopMerchantCount) {
|
|
const res = await request.put<ApiResult<unknown>>(
|
|
'/shop/shop-merchant-count',
|
|
data
|
|
);
|
|
if (res.code === 0) {
|
|
return res.message;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|
|
|
|
/**
|
|
* 删除门店销售统计表
|
|
*/
|
|
export async function removeShopMerchantCount(id?: number) {
|
|
const res = await request.del<ApiResult<unknown>>(
|
|
'/shop/shop-merchant-count/' + id
|
|
);
|
|
if (res.code === 0) {
|
|
return res.message;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|
|
|
|
/**
|
|
* 批量删除门店销售统计表
|
|
*/
|
|
export async function removeBatchShopMerchantCount(
|
|
data: (number | undefined)[]
|
|
) {
|
|
const res = await request.del<ApiResult<unknown>>(
|
|
'/shop/shop-merchant-count/batch',
|
|
{
|
|
data
|
|
}
|
|
);
|
|
if (res.code === 0) {
|
|
return res.message;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|
|
|
|
/**
|
|
* 根据id查询门店销售统计表
|
|
*/
|
|
export async function getShopMerchantCount(id: number) {
|
|
const res = await request.get<ApiResult<ShopMerchantCount>>(
|
|
'/shop/shop-merchant-count/' + id
|
|
);
|
|
if (res.code === 0 && res.data) {
|
|
return res.data;
|
|
}
|
|
return Promise.reject(new Error(res.message));
|
|
}
|