From e7a4d9383da4c617b8960352605ffded27d201b3 Mon Sep 17 00:00:00 2001 From: lq <121091329@qq.com> Date: Wed, 24 Sep 2025 16:53:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=88=9B=E5=BB=BA=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/draw-popup.vue | 52 ++++++++++++++++--- .../components/task-item.vue | 7 +-- .../assignment-management/index.vue | 1 - 3 files changed, 46 insertions(+), 14 deletions(-) diff --git a/src/views/property-marketing/assignment-management/components/draw-popup.vue b/src/views/property-marketing/assignment-management/components/draw-popup.vue index 9e5e2f0..e60a9fe 100644 --- a/src/views/property-marketing/assignment-management/components/draw-popup.vue +++ b/src/views/property-marketing/assignment-management/components/draw-popup.vue @@ -24,6 +24,7 @@ :maxTagCount="999" popup-container=".filter-popup-content" /> +
- { if (!timestamp) { timestamp = Date.now() / 1000; // 使用秒级时间戳保持一致性 } - + const date = new Date(timestamp * 1000); const year = date.getFullYear(); const month = String(date.getMonth() + 1).padStart(2, '0'); // 补零 diff --git a/src/views/property-marketing/assignment-management/index.vue b/src/views/property-marketing/assignment-management/index.vue index 6e7a8d7..69bb657 100644 --- a/src/views/property-marketing/assignment-management/index.vue +++ b/src/views/property-marketing/assignment-management/index.vue @@ -253,7 +253,6 @@ const handleAddTask = () => { }; const handleCreateTask = async (value) => { - console.log('handleCreateTask', value); const res = await createTask(value); if (res && res.code === 200) { message.success('创建成功');