赞
踩
export function importExcelApi(data) { return httpRequest({ url: constant.clmmaint + '/safeguard/importExcel', method: 'post', // 注意导出不能有这个 // responseType: 'blob', data: data }) } // 导出 export function excelExportApi (data) { return httpRequest({ url: constant.clmmaint + '/safeguard/download', method: 'post', responseType: 'blob', data: data }) }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。