供应商
This commit is contained in:
@ -0,0 +1,26 @@
|
||||
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
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user