From 75c1e9875666a3336e01f7d6faed72304f445035 Mon Sep 17 00:00:00 2001 From: qiuyuan Date: Wed, 10 Sep 2025 11:12:35 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=89=BF=E8=AF=BA=E4=B9=A6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/docList/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/docList/index.vue b/pages/docList/index.vue index 41850ae..829dc78 100644 --- a/pages/docList/index.vue +++ b/pages/docList/index.vue @@ -48,11 +48,11 @@ this.warnMsg = obj.warnMsg this.docList = [{ name: obj.applyPdfName, - url: BASE_URL + obj.covenantPdf + url: BASE_URL + obj.applyPdf }, { name: obj.covenantPdfName, - url: BASE_URL + obj.applyPdf + url: BASE_URL + obj.covenantPdf }, ] }, From ef84fb565e275f62d6ee194d664ec1a92e16b502 Mon Sep 17 00:00:00 2001 From: qiuyuan Date: Wed, 10 Sep 2025 12:23:20 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/meetingDetail/index.vue | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/pages/meetingDetail/index.vue b/pages/meetingDetail/index.vue index 2724901..5f6d3f5 100644 --- a/pages/meetingDetail/index.vue +++ b/pages/meetingDetail/index.vue @@ -176,7 +176,11 @@ - @@ -321,12 +325,12 @@ endTimePickerValue: ``, applyInfo:{}, // 日期相关 - // selectedDate: `${year}-${month}-${day}`, - // minDate: `${year}-${month}-${day}`, - // maxDate: `${year + 1}-12-31`, - selectedDate: `2025-08-11`, // 默认选中8月1日 - minDate: `2025-08-01`, // 最小可选8月1日 - maxDate: `2025-08-31`, // 最大可选8月31日 + selectedDate: `${year}-${month}-${day}`, + minDate: `${year}-${month}-${day}`, + maxDate: ``, + // selectedDate: `2025-08-11`, // 默认选中8月1日 + // minDate: `2025-08-01`, // 最小可选8月1日 + // maxDate: `2025-08-31`, // 最大可选8月31日 // 时间相关 // startTime: `2025-08`, @@ -334,10 +338,10 @@ // startTimeValue: `${startHours.toString().padStart(2, '0')}:${startMinutes.toString().padStart(2, '0')}`, // endTimeValue: `${endHours.toString().padStart(2, '0')}:${endMinutes.toString().padStart(2, '0')}`, - startTimeValue: `09:00`, - endTimeValue: `10:00`, - startTimePickerValue: `2025-08-11 09:00`, - endTimePickerValue: `2025-08-11 10:00`, + // startTimeValue: `09:00`, + // endTimeValue: `10:00`, + // startTimePickerValue: `2025-08-11 09:00`, + // endTimePickerValue: `2025-08-11 10:00`, // 新增备注字段 remark: '', @@ -393,9 +397,11 @@ return `${year}年${month}月`; } else { // 普通会议室模式,显示完整日期 - const date = new Date(this.selectedDate); + const date = new Date(); + console.log("=====date",date) const weekdays = ['周日', '周一', '周二', '周三', '周四', '周五', '周六']; const month = date.getMonth() + 1; + console.log("=====month",month) const day = date.getDate(); const weekday = weekdays[date.getDay()];