From ab83d8321f1a61e15a47362c20c896fdb6b9195f Mon Sep 17 00:00:00 2001
From: chenrui <1187576398@qq.com>
Date: 星期四, 06 三月 2025 17:37:57 +0800
Subject: [PATCH] bug修复

---
 src/views/performance/manHour/workTimeManagement.vue |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/src/views/performance/manHour/workTimeManagement.vue b/src/views/performance/manHour/workTimeManagement.vue
index 9e7a9c0..7fb4049 100644
--- a/src/views/performance/manHour/workTimeManagement.vue
+++ b/src/views/performance/manHour/workTimeManagement.vue
@@ -518,9 +518,10 @@
         param = { ...entity, ...this.page };
       } else {
         param = { ...this.entity, ...this.page };
-        param.dateTime = JSON.stringify(param.dateTime);
+        param.dateTime = param.dateTime?.length > 0 ? JSON.stringify(param.dateTime) : null;
       }
       delete param.total;
+      console.log('11111111111111111')
       selectAuxiliaryWorkingHoursDay({ ...param })
         .then((res) => {
           this.tableLoading = false;

--
Gitblit v1.9.3