From 48e750152cd2175a13ca9fe173a1e6122c140007 Mon Sep 17 00:00:00 2001 From: wangchengming <15110151257@163.com> Date: Thu, 18 Sep 2025 23:40:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AA=92=E4=BD=93=E5=8E=86?= =?UTF-8?q?=E5=8F=B2=E6=95=B0=E6=8D=AE=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/index.vue | 3 +- .../components/officeBuilding.vue | 9 +- src/views/mediaLibrary/historyData.vue | 219 ++++++++++++++++-- src/views/mediaLibrary/index.vue | 3 +- src/views/mediaTool/pptAnalysisIndex.vue | 6 +- 5 files changed, 202 insertions(+), 38 deletions(-) diff --git a/src/views/index.vue b/src/views/index.vue index be19830..6e835cc 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -167,8 +167,7 @@ const handleGeoConvertBack = () => { // 获取通知 const getNoticeList = () => { - noticeList({ noticeType: 1, status: 0 }).then(res => { - console.log('通知结果', res) + noticeList({ noticeType: 1, status: 0 }).then(res => { notices.value = res.rows }) } diff --git a/src/views/mediaLibrary/components/officeBuilding.vue b/src/views/mediaLibrary/components/officeBuilding.vue index 148f0bf..7c2d93d 100644 --- a/src/views/mediaLibrary/components/officeBuilding.vue +++ b/src/views/mediaLibrary/components/officeBuilding.vue @@ -262,14 +262,11 @@ const handleSubmit = () => { }) } // 获取历史报价 -const getMediaPrice = (_mediaId, _showOptionColumn) => { - console.log('走了这里?') +const getMediaPrice = (_mediaId, _showOptionColumn) => { showOptionColumn.value = _showOptionColumn if (_mediaId) { - mediaPrice({ mediaId: _mediaId }).then(res => { - console.log('查询到报价', res.data) - quotationList.value = res.data.filter(item => item.mediaType == 6) - console.log('过滤后数据', quotationList.value) + mediaPrice({ mediaId: _mediaId }).then(res => { + quotationList.value = res.data.filter(item => item.mediaType == 6) quotationList.value.forEach(element => { element.currentImageSrc = defaultImageSrc.value }); diff --git a/src/views/mediaLibrary/historyData.vue b/src/views/mediaLibrary/historyData.vue index 5a335df..ee334eb 100644 --- a/src/views/mediaLibrary/historyData.vue +++ b/src/views/mediaLibrary/historyData.vue @@ -1,6 +1,6 @@