- 调整 import 语句格式,统一空格和引号风格 - 修复函数参数跨行时的格式对齐问题 - 清理多余空行和注释中的空白字符 - 统一对象属性结尾逗号的使用规范 - 规范化字符串拼接和模板语法的格式 - 优化长参数列表的换行和缩进格式
145 lines
3.4 KiB
TypeScript
145 lines
3.4 KiB
TypeScript
import request from '@/utils/request';
|
|
import type { ApiResult, PageResult } from '@/api';
|
|
import type {
|
|
CreditHistoricalLegalPerson,
|
|
CreditHistoricalLegalPersonParam
|
|
} from './model';
|
|
|
|
/**
|
|
* 分页查询历史法定代表人
|
|
*/
|
|
export async function pageCreditHistoricalLegalPerson(
|
|
params: CreditHistoricalLegalPersonParam
|
|
) {
|
|
const res = await request.get<
|
|
ApiResult<PageResult<CreditHistoricalLegalPerson>>
|
|
>('/credit/credit-historical-legal-person/page', {
|
|
params
|
|
});
|
|
if (res.data.code === 0) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 查询历史法定代表人列表
|
|
*/
|
|
export async function listCreditHistoricalLegalPerson(
|
|
params?: CreditHistoricalLegalPersonParam
|
|
) {
|
|
const res = await request.get<ApiResult<CreditHistoricalLegalPerson[]>>(
|
|
'/credit/credit-historical-legal-person',
|
|
{
|
|
params
|
|
}
|
|
);
|
|
if (res.data.code === 0 && res.data.data) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 添加历史法定代表人
|
|
*/
|
|
export async function addCreditHistoricalLegalPerson(
|
|
data: CreditHistoricalLegalPerson
|
|
) {
|
|
const res = await request.post<ApiResult<unknown>>(
|
|
'/credit/credit-historical-legal-person',
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 修改历史法定代表人
|
|
*/
|
|
export async function updateCreditHistoricalLegalPerson(
|
|
data: CreditHistoricalLegalPerson
|
|
) {
|
|
const res = await request.put<ApiResult<unknown>>(
|
|
'/credit/credit-historical-legal-person',
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 删除历史法定代表人
|
|
*/
|
|
export async function removeCreditHistoricalLegalPerson(id?: number) {
|
|
const res = await request.delete<ApiResult<unknown>>(
|
|
'/credit/credit-historical-legal-person/' + id
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 批量删除历史法定代表人
|
|
*/
|
|
export async function removeBatchCreditHistoricalLegalPerson(
|
|
data: (number | undefined)[]
|
|
) {
|
|
const res = await request.delete<ApiResult<unknown>>(
|
|
'/credit/credit-historical-legal-person/batch',
|
|
{
|
|
data
|
|
}
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 根据id查询历史法定代表人
|
|
*/
|
|
export async function getCreditHistoricalLegalPerson(id: number) {
|
|
const res = await request.get<ApiResult<CreditHistoricalLegalPerson>>(
|
|
'/credit/credit-historical-legal-person/' + id
|
|
);
|
|
if (res.data.code === 0 && res.data.data) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 导入历史法定代表人
|
|
*/
|
|
export async function importCreditHistoricalLegalPerson(
|
|
file: File,
|
|
companyId?: number
|
|
) {
|
|
const formData = new FormData();
|
|
formData.append('file', file);
|
|
if (companyId != null) {
|
|
formData.append('companyId', String(companyId));
|
|
}
|
|
const res = await request.post<ApiResult<unknown>>(
|
|
'/credit/credit-historical-legal-person/import',
|
|
formData,
|
|
{
|
|
headers: {
|
|
'Content-Type': 'multipart/form-data'
|
|
}
|
|
}
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|