- 详细报告按 scaleType 区分 4/8 电极渲染,节段卡片 8 电极专属 - 设备列表改为接口驱动并新增空态 - 登录后统一跳首页,请求层兼容 code 0 返回风格 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
27 lines
1022 B
Plaintext
27 lines
1022 B
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">
|
|
<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>
|
|
</view>
|
|
</view>
|