refactor(styles): replace custom scroll classes with overflow utils

Remove the deprecated scroll.scss stylesheet and its import from the main SCSS index file. Replace all usages of the custom .scroll-y and .scroll-x classes across Vue templates with the corresponding overflow utility classes. Fix a malformed scroll-view tag in the goods album page template.
This commit is contained in:
duanshuwen
2026-07-25 10:21:28 +08:00
parent 06119f00db
commit f534a2ea89
12 changed files with 11 additions and 20 deletions

View File

@@ -4,7 +4,7 @@
<FindTabs v-if="discoveryTabs.length > 0" v-model="activeIndex" :tabs="discoveryTabs" @change="handleTabChange" />
</view>
<scroll-view class="discovery-scroll" scroll-y @scroll="handleContentScroll">
<scroll-view class="discovery-scroll" overflow-y-auto@scroll="handleContentScroll">
<view class="discovery-body">
<CardSwiper v-if="discoveryCards.length > 0" :list="discoveryCards" @didSelectItem="handleCardClick" />
<ExploreCards v-if="exploreCards.length > 0" :list="exploreCards" @didSelectItem="handleCardClick" />