From eca20db163a6b66bf07186898560d13c6e996aa7 Mon Sep 17 00:00:00 2001 From: zhuo <2089219845@qq.com> Date: 星期四, 06 三月 2025 17:59:14 +0800 Subject: [PATCH] 清除无用模块 --- src/views/performance/manHour/workTimeManagement.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/performance/manHour/workTimeManagement.vue b/src/views/performance/manHour/workTimeManagement.vue index 2f10f73..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; @@ -637,7 +638,6 @@ }) .then(() => { deleteAuxiliaryWorkingHoursDay({ id: row.id }).then((res) => { - if (res.code == 201) return; this.$message.success("鍒犻櫎鎴愬姛"); this.refreshTable("page"); }); -- Gitblit v1.9.3