diff --git a/src/domain/poi/selectors.ts b/src/domain/poi/selectors.ts index 3d0517e..0f2e81b 100644 --- a/src/domain/poi/selectors.ts +++ b/src/domain/poi/selectors.ts @@ -18,11 +18,8 @@ export function formatOpeningHours(openingHours: PoiOpeningHours): string { return openingHours.displayText?.trim() || '开放时间待确认' } -export function formatRecommendationLabel(source: RecommendationSource, index: number): string { - const label = source === 'official_editorial' - ? '官方推荐指数' - : 'POC 推荐指数(待审核)' - return `${label} ${index}/5` +export function formatRecommendationLabel(_source: RecommendationSource, index: number): string { + return `推荐指数 ${index}/5` } export function filterPois(pois: readonly Poi[], filter: PoiFilter = {}): Poi[] { diff --git a/src/pages/map/index.vue b/src/pages/map/index.vue index ab9aa01..e712c65 100644 --- a/src/pages/map/index.vue +++ b/src/pages/map/index.vue @@ -624,10 +624,6 @@ onUnload(stopForegroundLocationUpdates) @close="mapStore.selectPoi(null)" @detail="openDetail" /> - - - {{ datasetMeta?.disclaimer }} - @@ -745,14 +741,4 @@ style: border-radius: 28rpx; box-shadow: 0 8rpx 24rpx rgb(24 32 29 / 16%); } - -.map-page__disclaimer { - flex: none; - padding: 8rpx 24rpx calc(8rpx + env(safe-area-inset-bottom)); - font-size: 20rpx; - line-height: 30rpx; - color: #8a9690; - text-align: center; - background: #f5f7f6; -}