16 lines
887 B
JavaScript
16 lines
887 B
JavaScript
/**
|
|
* api接口统一管理 、、质量管理
|
|
*/
|
|
import {post, get} from '../http'
|
|
|
|
//基本信息管理-仓库管理
|
|
export const addStuffWarehouseApi = data => post('/xmgl/stuff/stuffWarehouse/add', data);
|
|
export const deleteStuffWarehouseApi = data => post('/xmgl/stuff/stuffWarehouse/delete', data);
|
|
export const editStuffWarehouseApi = data => post('/xmgl/stuff/stuffWarehouse/edit', data);
|
|
export const getStuffWarehousePageApi = data => get('/xmgl/stuff/stuffWarehouse/page', data);
|
|
|
|
//基本信息管理-供应商管理
|
|
export const addStuffVendorApi = data => post('/xmgl/stuff/stuffVendor/add', data);
|
|
export const deleteStuffVendorApi = data => post('/xmgl/stuff/stuffVendor/delete', data);
|
|
export const editStuffVendorApi = data => post('/xmgl/stuff/stuffVendor/edit', data);
|
|
export const getStuffVendorPageApi = data => get('/xmgl/stuff/stuffVendor/page', data); |