feat: 企微获客助手小程序 - 首页商品详情+遮蔽层跳转+工具箱

This commit is contained in:
陈誉午
2026-07-31 17:37:06 +08:00
commit 84d543eb14
46 changed files with 25402 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
<navigation-bar back="{{false}}" color="black" background="#FFF"></navigation-bar>
<!-- 工具箱首页 -->
<view class="tools-page">
<view class="tools-header">
<text class="tools-title">🛠️ 工具箱</text>
</view>
<view class="tools-grid">
<view class="tool-card" bindtap="goColor">
<view class="tool-icon">🎨</view>
<text class="tool-name">颜色转换</text>
<text class="tool-desc">HEX / RGB 互转</text>
</view>
<view class="tool-card" bindtap="goRandom">
<view class="tool-icon">🎲</view>
<text class="tool-name">随机生成</text>
<text class="tool-desc">数字 / 密码生成器</text>
</view>
<view class="tool-card" bindtap="goCountdown">
<view class="tool-icon">⏱️</view>
<text class="tool-name">倒计时</text>
<text class="tool-desc">秒级倒计时器</text>
</view>
<view class="tool-card tool-card-disabled">
<view class="tool-icon">📝</view>
<text class="tool-name">更多工具</text>
<text class="tool-desc">敬请期待</text>
</view>
</view>
</view>