@@ -136,7 +136,7 @@ import { method } from 'lodash-es';
}
/** 导出数据 */
- const exportData = (method = 'POST') => {
+ const exportData = (name, method = 'POST') => {
const loading = EleMessage.loading({
message: '请求中..',
plain: true
@@ -61,6 +61,6 @@
//导出excel
function handleExportExcel() {
- pageRef.value?.exportData('GET');
+ pageRef.value?.exportData('回收订单统计', 'GET');
</script>