Files
xinlong-shop-taro/.workbuddy/memory/2026-06-23.md
赵忠林 66491b1853 feat(homepage): 调整首页功能入口图标及修正跳转路径
- 将“拼团活动”替换为“我的收藏”
- 重新定位“积分商城”图标位置,保持数量不变
- 将“联系客服”替换为“帮助中心”
- 将“门店地址”替换为新增的“门店信息”页面入口
- 修正了限时秒杀和领券中心的页面跳转路径为真实页面文件
- 确保调整后的功能入口图标数量保持为8个
- 构建编译通过,功能稳定
2026-06-23 17:11:35 +08:00

33 lines
1.7 KiB
Markdown
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.

# 2026-06-23
## 微信小程序审核修复(第二轮)
### 审核失败原因
1. **提现页面规则不完整** — 需展示可提现额度、每日提现次数、提现时间、到账时间等
2. **限时秒杀功能点击无响应** — 无法体验完整流程
### 修改文件
1. **`src/pages/user/withdraw/index.tsx`** — 将原来仅3项的 config-card 替换为完整 rules-card新增可提现额度、最低提现、每日限额、每日提现次数、提现时间含兜底"全天可提")、到账时间、手续费(含兜底"免手续费"),底部加 rules-note 说明区块
2. **`src/pages/user/withdraw/index.scss`** — 新增 .rules-card / .rules-title / .rule-item / .rules-note 等样式
3. **`src/pages/shop/seckill-detail/index.tsx`** — `handleBuyNow``handleBuyClick`,增加未开始/已结束/已抢光三种状态的 Toast 提示,按钮 onClick 始终绑定(不再条件判断)
4. **`src/pages/seckill-detail.tsx`** — 同步修改 root 平铺版秒杀详情页(与 shop/ 子目录版内容一致)
### 构建状态
- `taro build --type weapp` 编译通过 ✓
## 首页功能入口图标调整
### 改动文件
- **`src/pages/index/index.tsx`** — `featureEntries` 数组第28-38行
### 调整内容8个 → 8个替换4个
| 去掉 | 替换为 |
|------|--------|
| 👥 拼团活动 | ⭐ 我的收藏 `/pages/user/favorite-list/index` |
| ⭐ 积分商城(原位)→ 💰 积分商城 | 保留,位置后移 |
| 📞 联系客服 | ❓ 帮助中心 `/pages/user/help-center/index` |
| 🏪 门店地址 | 🏪 门店信息 `/pages/shop/shopStore/index`(用户新加页面) |
同时修正了限时秒杀、领券中心的跳转路径指向真实页面文件。
构建编译通过 ✓