27 lines
587 B
TypeScript
27 lines
587 B
TypeScript
![]() |
import request from '@/utils/request';
|
||
|
|
||
|
|
||
|
export async function getSupplierChangeList(params: any) {
|
||
|
return request('/api/supplier/getSupplierChangeList', { method: 'GET', params });
|
||
|
}
|
||
|
|
||
|
export async function list(params:any) {
|
||
|
return request('/api/system/list', {
|
||
|
method: 'GET',
|
||
|
params
|
||
|
});
|
||
|
}
|
||
|
export async function getPage(params:any) {
|
||
|
return request('/api/system/getPage', {
|
||
|
method: 'GET',
|
||
|
params
|
||
|
});
|
||
|
}
|
||
|
|
||
|
export async function getSupplierChangeDetail(params:any) {
|
||
|
return request('/api/system/getSupplierChangeDetail', {
|
||
|
method: 'GET',
|
||
|
params
|
||
|
});
|
||
|
}
|