Prechádzať zdrojové kódy

回收订单统计页面接口对接

Alex 9 mesiacov pred
rodič
commit
23974d973a

+ 1 - 1
src/components/CommonPage/CommonTable.vue

@@ -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

+ 1 - 1
src/views/statistic/recycleOrder/index.vue

@@ -61,6 +61,6 @@
 
   //导出excel
   function handleExportExcel() {
-    pageRef.value?.exportData('GET');
+    pageRef.value?.exportData('回收订单统计', 'GET');
   }
 </script>