personnel.wxml 728 B

1234567891011121314
  1. <popup show="{{show}}" height="{{height}}" bind:close="close" class="popupHeight">
  2. <view class="popup_title">请点击选择需要进行约课的儿童</view>
  3. <view class="list-block weui-cells weui-cells_after-title" wx:if='{{list.length > 0}}'>
  4. <radio-group bindchange="radioChange">
  5. <label class="weui-cell weui-check__label" wx:for="{{list}}" wx:key="*this">
  6. <view class="weui-cell__hd">
  7. <radio value="{{item.childName+'|'+item.id+'|'+item.userAvatar+'|'+item.userId+'|'+item.userNickname+'|'+item.age+'|'+item.city+'|'+item.sex}}" checked="{{item.checked}}"/>
  8. </view>
  9. <view class="weui-cell__bd">{{item.childName}}</view>
  10. </label>
  11. </radio-group>
  12. </view>
  13. </popup>