- 调整 import 语句格式,统一空格和引号风格 - 修复函数参数跨行时的格式对齐问题 - 清理多余空行和注释中的空白字符 - 统一对象属性结尾逗号的使用规范 - 规范化字符串拼接和模板语法的格式 - 优化长参数列表的换行和缩进格式
162 lines
3.9 KiB
TypeScript
162 lines
3.9 KiB
TypeScript
import request from '@/utils/request';
|
|
import type { ApiResult, PageResult } from '@/api';
|
|
import type { ShopDealerApply, ShopDealerApplyParam } from './model';
|
|
|
|
/**
|
|
* 分页查询分销商申请记录表
|
|
*/
|
|
export async function pageShopDealerApply(params: ShopDealerApplyParam) {
|
|
const res = await request.get<ApiResult<PageResult<ShopDealerApply>>>(
|
|
'/shop/shop-dealer-apply/page',
|
|
{ params }
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 查询分销商申请记录表列表
|
|
*/
|
|
export async function listShopDealerApply(params?: ShopDealerApplyParam) {
|
|
const res = await request.get<ApiResult<ShopDealerApply[]>>(
|
|
'/shop/shop-dealer-apply',
|
|
{ params }
|
|
);
|
|
if (res.data.code === 0 && res.data.data) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 添加分销商申请记录表
|
|
*/
|
|
export async function addShopDealerApply(data: ShopDealerApply) {
|
|
const res = await request.post<ApiResult<unknown>>(
|
|
'/shop/shop-dealer-apply',
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 修改分销商申请记录表
|
|
*/
|
|
export async function updateShopDealerApply(data: ShopDealerApply) {
|
|
const res = await request.put<ApiResult<unknown>>(
|
|
'/shop/shop-dealer-apply',
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 删除分销商申请记录表
|
|
*/
|
|
export async function removeShopDealerApply(id?: number) {
|
|
const res = await request.delete<ApiResult<unknown>>(
|
|
'/shop/shop-dealer-apply/' + id
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 批量删除分销商申请记录表
|
|
*/
|
|
export async function removeBatchShopDealerApply(data: (number | undefined)[]) {
|
|
const res = await request.delete<ApiResult<unknown>>(
|
|
'/shop/shop-dealer-apply/batch',
|
|
{
|
|
data
|
|
}
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 根据id查询分销商申请记录表
|
|
*/
|
|
export async function getShopDealerApply(id: number) {
|
|
const res = await request.get<ApiResult<ShopDealerApply>>(
|
|
'/shop/shop-dealer-apply/' + id
|
|
);
|
|
if (res.data.code === 0 && res.data.data) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 审核通过分销商申请
|
|
*/
|
|
export async function approveShopDealerApply(id: number) {
|
|
const res = await request.put<ApiResult<unknown>>(
|
|
`/shop/shop-dealer-apply/${id}/approve`
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 驳回分销商申请
|
|
*/
|
|
export async function rejectShopDealerApply(
|
|
id: number,
|
|
data: { rejectReason: string }
|
|
) {
|
|
const res = await request.put<ApiResult<unknown>>(
|
|
`/shop/shop-dealer-apply/${id}/reject`,
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 批量审核通过分销商申请
|
|
*/
|
|
export async function batchApproveShopDealerApply(ids: number[]) {
|
|
const res = await request.put<ApiResult<unknown>>(
|
|
'/shop/shop-dealer-apply/batch-approve',
|
|
{ ids }
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 导入经销商申请
|
|
*/
|
|
export async function importShopDealerApplies(file: File) {
|
|
const formData = new FormData();
|
|
formData.append('file', file);
|
|
const res = await request.post<ApiResult<unknown>>(
|
|
'/shop/shop-dealer-apply/import',
|
|
formData
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|