Files
fe_supplier_frontend/src/pages/supplier/informationManagement/SupplierChangeReviewManage/services.ts

25 lines
542 B
TypeScript
Raw Normal View History

2025-06-24 10:52:30 +08:00
import request from '@/utils/request';
2025-07-02 16:18:03 +08:00
/**
*
*/
interface getPageData {
pageNo: number;
pageSize: number;
supplierName?: string;
supplierType?: string;
startTime?: string;
endTime?: string;
approveStatus?: string;
enterpriseType?: string;
2025-06-24 10:52:30 +08:00
}
2025-07-02 16:18:03 +08:00
export const getPage = (data: getPageData) => request.post('/coscoSupplierChangeApply/getPage', { data });
export const supplierChangeApplyById = (id: string) => request.get(`/coscoSupplierChangeApply/supplierChangeApplyById/${id}` );
2025-06-24 10:52:30 +08:00