25 lines
542 B
TypeScript
25 lines
542 B
TypeScript
import request from '@/utils/request';
|
|
|
|
|
|
/**
|
|
* 供应商变更审批管理分页列表
|
|
*/
|
|
interface getPageData {
|
|
pageNo: number;
|
|
pageSize: number;
|
|
supplierName?: string;
|
|
supplierType?: string;
|
|
startTime?: string;
|
|
endTime?: string;
|
|
approveStatus?: string;
|
|
enterpriseType?: string;
|
|
}
|
|
export const getPage = (data: getPageData) => request.post('/coscoSupplierChangeApply/getPage', { data });
|
|
|
|
|
|
export const supplierChangeApplyById = (id: string) => request.get(`/coscoSupplierChangeApply/supplierChangeApplyById/${id}` );
|
|
|
|
|
|
|
|
|