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
|
|
|
|