刘洋 5 сар өмнө
parent
commit
96249fec72

+ 4 - 1
src/views/work-hours/work-hours-manage/work-statistics/index.vue

@@ -163,7 +163,10 @@ const params = reactive({
 });
 
 const exportFile = () => {
-  exportWorkApi(params).then(() => {
+  exportWorkApi({
+    serviceId: params.serviceId,
+    type: params.type,
+  }).then(() => {
     MessagePlugin.success('导出成功');
   });
 };