helpInfo.wxml 312 B

12345678910
  1. <view class="container">
  2. <auth bindlogin="onShow" />
  3. <lip-sync />
  4. <view class="help-container" wx:for="{{helpList}}" wx:key="{{index}}">
  5. <view class="help-box">
  6. <view class="help-title">{{item.question}}</view>
  7. <view class="help-content">{{item.answer}}</view>
  8. </view>
  9. </view>
  10. </view>