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 @@