From b405ce40530305f771dee725c9380f14490bfcdc Mon Sep 17 00:00:00 2001 From: gaoluyang <2820782392@qq.com> Date: 星期四, 13 三月 2025 13:31:21 +0800 Subject: [PATCH] 工时管理-查询传参修改 --- src/views/performance/manHour/workTimeManagement.vue | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/src/views/performance/manHour/workTimeManagement.vue b/src/views/performance/manHour/workTimeManagement.vue index 60eaac8..3585646 100644 --- a/src/views/performance/manHour/workTimeManagement.vue +++ b/src/views/performance/manHour/workTimeManagement.vue @@ -519,7 +519,6 @@ param.dateTime = param.dateTime?.length > 0 ? JSON.stringify(param.dateTime) : null; } delete param.total; - console.log('11111111111111111') selectAuxiliaryWorkingHoursDay({ ...param }) .then((res) => { this.tableLoading = false; @@ -539,7 +538,7 @@ param = { ...entity, ...this.page0 }; } else { param = { ...this.entity, ...this.page0 }; - param.dateTime = JSON.stringify(param.dateTime); + param.dateTime = param.dateTime?.length > 0 ? JSON.stringify(param.dateTime) : null } delete param.total; selectAuxiliaryOutputWorkingHours({ ...param }) -- Gitblit v1.9.3