From ff0c28fc7cd2c5875e02798dc16d8a4ca420b103 Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Mon, 31 Mar 2025 14:56:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=90=A5=E4=B8=9A=E9=83=A8?= =?UTF-8?q?=E6=94=B6=E5=85=A5=E6=8A=A5=E8=A1=A8=E8=AF=A6=E6=83=85=E8=B7=B3?= =?UTF-8?q?=E8=BD=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SalesDepartmentIncomeReport.vue | 27 +++++++++++-------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/src/views/reportforms/SalesDepartmentIncomeReport.vue b/src/views/reportforms/SalesDepartmentIncomeReport.vue index f235f0c0..2e88bb5c 100644 --- a/src/views/reportforms/SalesDepartmentIncomeReport.vue +++ b/src/views/reportforms/SalesDepartmentIncomeReport.vue @@ -620,20 +620,25 @@ const handleJumpDetail = (row, column) => { // 年 console.log('details.query.year :>> ', details.query.year); + const formatDate = date => { + console.log('date :>> ', date); + const y = date.getFullYear(); + const m = String(date.getMonth() + 1).padStart(2, '0'); // 月份补零 + const d = String(date.getDate()).padStart(2, '0'); // 日期补零 + return `${y}-${m}-${d}`; + }; + if (details.query.year) { - query.startTimeStr = details.query.year + '-01-01'; - query.endTimeStr = details.query.year + '-12-31'; - } else if (details.query.month) { - const formatDate = date => { - console.log('date :>> ', date); - const y = date.getFullYear(); - const m = String(date.getMonth() + 1).padStart(2, '0'); // 月份补零 - const d = String(date.getDate()).padStart(2, '0'); // 日期补零 - return `${y}-${m}-${d}`; - }; + const month = [details.query.year, row.yue]; + query.startTimeStr = + details.query.year + '-' + (Number(row.yue) >= 10 ? row.yue : '0' + row.yue) + '-01'; + query.endTimeStr = formatDate(new Date(month[0], Number(month[1]), 0)); + // // yue + // query.startTimeStr = details.query.year + '-01-01'; + // query.endTimeStr = details.query.year + '-12-31'; + } else if (details.query.month) { const month = details.query.month.split('-'); - console.log('month :>> ', month); query.startTimeStr = details.query.month + '-01'; query.endTimeStr = formatDate(new Date(month[0], Number(month[1]), 0)); console.log('query.endTimeStr :>> ', query.endTimeStr);