friends_sort.wxml 586 B

123456789101112131415
  1. <view class='title'>
  2. <text> 选择好友之间较量的领域</text>
  3. </view>
  4. <view>
  5. <button wx:for="{{question_sort}}" class="{{index+1==sortId&&sortId!=='' ? 'animated fadeIn' : ''}} sort" bindtap='getShareInfo' data-sortid='{{item.id}}' data-sortname='{{item.sort}}'>{{item.sort}}</button>
  6. </view>
  7. <view class='enrollToast' wx:if='{{showShareButton}}'>
  8. <view class='toast'></view>
  9. <view class='content'>
  10. <button type='primary' open-type='share'>转发给好友</button>
  11. <button style='margin-top:50rpx;' bindtap='closeShareButton'>取消</button>
  12. </view>
  13. </view>