2025-06-24 10:52:30 +08:00
|
|
|
import request from '@/utils/request';
|
|
|
|
|
2025-07-02 16:18:03 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface getPageQualified {
|
|
|
|
pageNo: number;
|
|
|
|
pageSize: number;
|
|
|
|
treeId?: string;
|
|
|
|
}
|
|
|
|
export const getPageQualified = (data: getPageQualified) => request.post('/coscoSupplierBase/getPageQualified', { data });
|
|
|
|
|
|
|
|
|
2025-07-09 16:34:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface getCategoryPage {
|
|
|
|
pageNo: number;
|
2025-06-24 10:52:30 +08:00
|
|
|
pageSize: number;
|
2025-07-09 16:34:10 +08:00
|
|
|
supplierId?: string;
|
2025-06-24 10:52:30 +08:00
|
|
|
}
|
2025-07-09 16:34:10 +08:00
|
|
|
export const getCategoryPage = (data: getCategoryPage) => request.post('/coscoSupplierBase/getCategoryPage', { data });
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-06-24 10:52:30 +08:00
|
|
|
export async function treeData() {
|
|
|
|
return request('/api/system/treeData', {
|
|
|
|
method: 'GET'
|
|
|
|
});
|
|
|
|
}
|