- 添加 .dockerignore 和 .env.example 配置文件 - 添加 .gitignore 忽略规则配置 - 创建服务端代理API路由(_file、_modules、_server) - 集成 Ant Design Vue 组件库并配置SSR样式提取 - 定义API响应类型封装 - 创建基础布局组件(blank、console) - 实现应用中心页面和组件(AppsCenter) - 添加文章列表测试页面 - 配置控制台导航菜单结构 - 实现控制台头部组件 - 创建联系页面表单
159 lines
3.9 KiB
TypeScript
159 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));
|
|
}
|