2025-06-24 10:52:30 +08:00
|
|
|
import request from '@/utils/request';
|
|
|
|
|
2025-07-02 16:18:03 +08:00
|
|
|
interface getRegisterPage {
|
|
|
|
pageNo: number;
|
2025-06-24 10:52:30 +08:00
|
|
|
pageSize: number;
|
2025-07-02 16:18:03 +08:00
|
|
|
name?: string;
|
|
|
|
supplierType?: string;
|
|
|
|
accessStatus?: string;
|
2025-06-24 10:52:30 +08:00
|
|
|
}
|
2025-07-02 16:18:03 +08:00
|
|
|
export const getRegisterPage = (data: getRegisterPage) => request.post('/coscoSupplierBase/getRegisterPage', { data });
|
|
|
|
|
|
|
|
interface getCategoryPage {
|
|
|
|
pageNo: number;
|
2025-06-24 10:52:30 +08:00
|
|
|
pageSize: number;
|
2025-07-02 16:18:03 +08:00
|
|
|
categoryNames?: string;
|
2025-06-24 10:52:30 +08:00
|
|
|
}
|
2025-07-02 16:18:03 +08:00
|
|
|
export const getCategoryPage = (data: getCategoryPage) => request.post('/coscoSupplierBase/getCategoryPage', { data });
|
|
|
|
|