139 lines
3.3 KiB
TypeScript
139 lines
3.3 KiB
TypeScript
import request from '@/utils/request';
|
|
import type { ApiResult, PageResult } from '@/api';
|
|
import type { CreditDeliveryNotice, CreditDeliveryNoticeParam } from './model';
|
|
|
|
/**
|
|
* 分页查询送达公告司法大数据
|
|
*/
|
|
export async function pageCreditDeliveryNotice(
|
|
params: CreditDeliveryNoticeParam
|
|
) {
|
|
const res = await request.get<ApiResult<PageResult<CreditDeliveryNotice>>>(
|
|
'/credit/credit-delivery-notice/page',
|
|
{
|
|
params
|
|
}
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 查询送达公告司法大数据列表
|
|
*/
|
|
export async function listCreditDeliveryNotice(
|
|
params?: CreditDeliveryNoticeParam
|
|
) {
|
|
const res = await request.get<ApiResult<CreditDeliveryNotice[]>>(
|
|
'/credit/credit-delivery-notice',
|
|
{
|
|
params
|
|
}
|
|
);
|
|
if (res.data.code === 0 && res.data.data) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 添加送达公告司法大数据
|
|
*/
|
|
export async function addCreditDeliveryNotice(data: CreditDeliveryNotice) {
|
|
const res = await request.post<ApiResult<unknown>>(
|
|
'/credit/credit-delivery-notice',
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 修改送达公告司法大数据
|
|
*/
|
|
export async function updateCreditDeliveryNotice(data: CreditDeliveryNotice) {
|
|
const res = await request.put<ApiResult<unknown>>(
|
|
'/credit/credit-delivery-notice',
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 删除送达公告司法大数据
|
|
*/
|
|
export async function removeCreditDeliveryNotice(id?: number) {
|
|
const res = await request.delete<ApiResult<unknown>>(
|
|
'/credit/credit-delivery-notice/' + id
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 批量删除送达公告司法大数据
|
|
*/
|
|
export async function removeBatchCreditDeliveryNotice(
|
|
data: (number | undefined)[]
|
|
) {
|
|
const res = await request.delete<ApiResult<unknown>>(
|
|
'/credit/credit-delivery-notice/batch',
|
|
{
|
|
data
|
|
}
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 根据id查询送达公告司法大数据
|
|
*/
|
|
export async function getCreditDeliveryNotice(id: number) {
|
|
const res = await request.get<ApiResult<CreditDeliveryNotice>>(
|
|
'/credit/credit-delivery-notice/' + id
|
|
);
|
|
if (res.data.code === 0 && res.data.data) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 导入送达公告司法大数据
|
|
*/
|
|
export async function importCreditDeliveryNotice(
|
|
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-delivery-notice/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));
|
|
}
|