help.wxml 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <view class="help">
  2. <view class="tab">
  3. <view class="tab_cell {{tabIndex === 1 ? 'active' : ''}}" bindtap="tabChange" data-index="1">联系客服</view>
  4. <view class="tab_cell {{tabIndex === 0 ? 'active' : ''}}" bindtap="tabChange" data-index="0">常见问题</view>
  5. </view>
  6. <view wx:if="{{tabIndex === 0}}">
  7. <view class="help_item" wx:for="{{result.list}}" wx:key="`helpItem${item.id}`">
  8. <view class="help_title" bindtap="slideHelp" data-index="{{index}}">
  9. <text>{{item.title}}</text>
  10. <image class="help_title-icon {{rotateList[index] ? 'rotate' : ''}}" src="/image/icon_dakai.png"></image>
  11. </view>
  12. <view class="help_content" hidden="{{!showList[index]}}">
  13. <text>
  14. {{item.excerpt}}
  15. </text>
  16. </view>
  17. </view>
  18. </view>
  19. <view wx:elif="{{tabIndex === 1}}">
  20. <image class="contact__img" src="/image/avatar.jpg"></image>
  21. <text class="contact__nickname">客服小姐姐</text>
  22. <text class="contact__qq"></text>
  23. <!-- <text class="contact__qq">QQ:3454634473</text> -->
  24. <!-- <button class="contact__btn" bindtap="copyQQ" data-qq="3454634473">点击复制QQ号</button> -->
  25. <button class="contact__btn" open-type="contact">联系客服</button>
  26. </view>
  27. </view>