feat: 列表样式修改

This commit is contained in:
2025-12-22 20:16:10 +08:00
parent 70a78b1cc5
commit b29ea455cb
36 changed files with 88 additions and 234 deletions
+12 -10
View File
@@ -1,9 +1,9 @@
<view class="page-container">
<!-- 页面标题和描述 -->
<view class="math-page-header">
<view class="math-page-title">专注启蒙</view>
<!-- <view class="math-page-title">专注启蒙</view> -->
<view class="math-page-subtitle">
选择功能,生成可打印的专注力、观察力启蒙涂鸦卡
选择功能,生成可打印的专注力、观察力培养涂鸦卡
</view>
</view>
@@ -14,15 +14,17 @@
wx:for="{{functionList}}"
wx:key="id"
data-function="{{item.id}}"
bind:tap="openFocusFunction">
<view class="function-item-image">
<view class="function-image-placeholder">{{item.icon}}</view>
bind:tap="openFocusFunction"
>
<view class="function-item-img-wrapper">
<image
class="function-item-img"
src="{{item.img}}"
mode="aspectFill"
></image>
</view>
<view class="function-item-content">
<view class="function-item-title">{{item.title}}</view>
<view class="function-item-desc">{{item.desc}}</view>
</view>
<view class="function-item-arrow">→</view>
<view class="function-item-title">{{item.title}}</view>
<view class="function-item-desc">{{item.desc}}</view>
</view>
</view>