11 lines
294 B
Vue
11 lines
294 B
Vue
import { defHttp } from '/@/utils/http/axios';
|
|
|
|
enum Api {
|
|
list = '/xslmes/mesXslRawMaterialDemandPlan/list',
|
|
exportXls = '/xslmes/mesXslRawMaterialDemandPlan/exportXls',
|
|
}
|
|
|
|
export const getExportUrl = Api.exportXls;
|
|
|
|
export const list = (params) => defHttp.get({ url: Api.list, params });
|