1
0
mirror of https://github.com/ialley-workshop-open/uni-halo.git synced 2026-09-12 16:40:40 +08:00

refactor: 清理配置文件注释并优化组件样式与逻辑

1. 移除appSettings.ts和appConfig.ts中的旧注释文档
2. 优化首页分类、文章页的箭头按钮样式与尺寸
3. 隐藏home页的多余"更多"按钮并统一右侧按钮样式
4. 重构快捷导航组件的逻辑,简化默认列表渲染
5. 优化文章卡片的布局样式、结构和代码组织
This commit is contained in:
小莫唐尼
2026-09-10 00:44:27 +08:00
parent 260d6965e3
commit eb19276a2d
6 changed files with 75 additions and 101 deletions
+4 -4
View File
@@ -229,14 +229,14 @@
@click="handleRecommendModeChange(tab.value as 'default' | 'pinned' | 'latest' | 'oldest')">
{{ tab.label }}
</view>
<view class="rounded-md px-2 py-0.5 text-xs text-gray-500" @click="handleToArticles()">
<view v-if="false" class="rounded-md px-2 py-0.5 text-xs text-gray-500" @click="handleToArticles()">
更多
</view>
</view>
<view v-if="false"
class="uh-global-card-glass flex items-center justify-center gap-x-1 rounded-md p-1 text-gray-400"
<view
class="uh-global-card-glass uh-shadow-xs border flex items-center justify-center rounded-md p-1 text-gray-400"
@click="handleToArticles()">
<wd-icon name="arrow-right" size="24rpx" />
<wd-icon name="arrow-right" size="28rpx" />
</view>
</view>
</template>