Files
ZhiQiXiaoYuan/pages/tools/tools.wxml
ChuXun eaab9a762a 1
2025-10-19 20:28:31 +08:00

28 lines
874 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--pages/tools/tools.wxml-->
<view class="container">
<view class="header">
<view class="header-title">实用工具</view>
<view class="header-desc">提升学习效率的小帮手</view>
</view>
<view class="tools-list">
<view
class="tool-card"
wx:for="{{tools}}"
wx:key="id"
data-path="{{item.path}}"
bindtap="onToolClick"
>
<view class="tool-icon" style="background-color: {{item.color}}20;">
<text class="icon-text">{{item.icon}}</text>
<view class="badge" wx:if="{{item.badge}}" style="background-color: {{item.badgeColor || '#FF5252'}};">{{item.badge}}</view>
</view>
<view class="tool-info">
<view class="tool-name">{{item.name}}</view>
<view class="tool-desc">{{item.desc}}</view>
</view>
<view class="arrow"></view>
</view>
</view>
</view>