feat(my): 新增个人信息、帮助中心、问题详情页面并接入导航

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
17792275749
2026-08-19 09:53:56 +08:00
co-authored by Claude Opus 4.7
parent cd11d711d5
commit 3a67b26ed6
15 changed files with 404 additions and 3 deletions
@@ -0,0 +1,22 @@
<view class="helpCenter">
<view class="search">
<view class="search-title">您遇到了什么问题?</view>
<view class="search-sub">根据下方分类快速排查设备状态...</view>
</view>
<view class="tabs">
<block wx:for="{{ tabs }}" wx:key="name">
<view class="tab {{ item.active ? 'tab--active' : '' }}" bind:tap="onTapTab" data-index="{{ index }}">{{ item.name }}</view>
</block>
</view>
<view class="list">
<block wx:for="{{ questions }}" wx:key="id">
<view class="question" bind:tap="onTapQuestion" data-title="{{ item.title }}">
<view class="dot"></view>
<view class="question-title">{{ item.title }}</view>
<view class="arrow"></view>
</view>
</block>
</view>
</view>