fix: 首页我的计划点击跳转错页 + feat: 新增留言反馈功能

fix:
- 首页'我的计划'卡片误绑 onExercise(跳动作详情),改为 onPlanTap 正确跳训练计划详情页
- 修复后点击计划可正常打开 plan-detail

feat(留言反馈):
- 后端新增 feedback 模块:POST /api/feedback(AuthGuard,content 必填/contact 选填),JsonStore 持久化
- 前端新增 pages/feedback 页面(留言内容 textarea + 联系方式选填 + 提交),profile 菜单新增'意见反馈'入口
- icon-svg 新增 message-circle 图标(反馈页用)
This commit is contained in:
2026-07-22 23:21:18 +08:00
parent c98758e61b
commit 4dba91a16e
15 changed files with 280 additions and 4 deletions

View File

@@ -126,6 +126,7 @@ Page({
goPlans() { wx.navigateTo({ url: '/pages/my-plans/my-plans' }); },
goFavPlans() { wx.navigateTo({ url: '/pages/plan-favorites/plan-favorites' }); },
goOfficial() { wx.navigateTo({ url: '/pages/collection/collection' }); },
goFeedback() { wx.navigateTo({ url: '/pages/feedback/feedback' }); },
noop() {}
});

View File

@@ -57,6 +57,11 @@
<text class="cell__label">官方训练计划</text>
<text class="cell__arrow"></text>
</view>
<view class="cell" bindtap="goFeedback">
<fc-icon class="cell__icon" name="message-circle" size="24" color="var(--text-2)" />
<text class="cell__label">意见反馈</text>
<text class="cell__arrow"></text>
</view>
</view>
<view class="logout" bindtap="onLogout">退出登录</view>