helpInfo.wxml 267 B

12345678
  1. <view class="container">
  2. <view class="help-container" wx:for="{{helpList}}" wx:key="{{index}}">
  3. <view class="help-box">
  4. <view class="help-title">{{item.question}}</view>
  5. <view class="help-content">{{item.answer}}</view>
  6. </view>
  7. </view>
  8. </view>