Files
bodyWeight/miniprogram/pages/helpCenter/helpCenter.wxml
T
17792275749andClaude Opus 4.7 548c26cad5 feat: 数据补传改为整包上传,帮助中心补空状态
- equipment 数据补传一次上传整个列表(list 参数),注释掉 memberId
- helpCenter 问题列表补空数据展示
- userManagement 删除成员接口 v2 调整为 v6
- my 页面按钮字体加粗

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-08-26 09:07:35 +08:00

32 lines
1.1 KiB
Plaintext

<view class="helpCenter">
<view class="search">
<view class="search-title">您遇到了什么问题?</view>
<view class="search-sub">根据下方分类快速排查设备状态...</view>
</view>
<view class="tabs">
<scroll-view class="scrollView" scroll-x>
<block wx:for="{{ tabs }}" wx:key="name">
<view class="tab {{ item.active ? 'tab--active' : '' }}" bind:tap="onTapTab" data-index="{{ index }}">{{ item.name }}</view>
</block>
</scroll-view>
</view>
<view class="list">
<block wx:if="{{ questions && questions.length }}">
<scroll-view class="scrollView" scroll-y>
<block wx:for="{{ questions }}" wx:key="id">
<view class="question" bind:tap="onTapQuestion" data-id="{{ item.id }}">
<view class="dot"></view>
<view class="question-title">{{ item.title }}</view>
<view class="arrow"></view>
</view>
</block>
</scroll-view>
</block>
<block wx:else>
<empty-data containerStyle="margin: 100rpx 0 200rpx;" />
</block>
</view>
</view>