1
0
mirror of https://github.com/ialley-workshop-open/uni-halo.git synced 2026-07-27 12:30:41 +08:00

style: 调整背景模糊值与布局样式,优化评论与图片功能

1.  调整全局背景模糊参数,统一并优化页面毛玻璃效果
2.  调整home页布局类名顺序,为post-card添加全屏宽度
3.  新增头像处理工具函数,补充随机图片源
4.  优化markdown内容容器的内边距样式
5.  重构文章详情页评论面板,实现完整评论回复功能
6.  优化文章详情页布局与样式细节
This commit is contained in:
小莫唐尼
2026-06-15 21:29:14 +08:00
parent a86baa9641
commit e191eb8358
7 changed files with 480 additions and 122 deletions
+2 -2
View File
@@ -127,7 +127,7 @@ onPageScroll(() => { })
</script>
<template>
<view class="bg-page3 min-h-screen">
<view class="min-h-screen bg-page3">
<!-- 顶部banner -->
<view v-if="false" class="relative h-72 w-full">
<image class="h-72 w-full object-cover" :src="exampleImageUrls.banner" />
@@ -237,7 +237,7 @@ onPageScroll(() => { })
<wd-empty :icon-size="60" icon="no-result" tip="暂无数据" />
</view>
<template v-else>
<post-card v-for="post in postList" :key="post.metadata.name" :post="post" :type="postCardStyle" />
<post-card v-for="post in postList" :key="post.metadata.name" :post="post" :type="postCardStyle" class="w-full" />
</template>
</view>
</view>