index.wxml 667 B

1234567891011121314151617
  1. <block wx:if="{{showData}}">
  2. <view class="orderList" wx:if="{{orderList.length>0}}">
  3. <radio-group bindchange="radioChange">
  4. <label class="weui-cell weui-check__label" wx:for="{{orderList}}" wx:key="index">
  5. <view class="weui-cell__hd">
  6. <radio value="{{item.orderid}}" />
  7. <view>订单{{index+1}}</view>
  8. </view>
  9. <view class="weui-cell__bd">参与者:{{item.attendantNames}}</view>
  10. </label>
  11. </radio-group>
  12. </view>
  13. <view class="noneList" wx:else>
  14. <view class="title">您尚未购买该活动</view>
  15. <button size="mini" type="warn" bindtap="jumpToHome">返回首页</button>
  16. </view>
  17. </block>