tb.axml 1.2 KB

1234567891011121314151617181920212223
  1. <view class="{{popupCx}}">
  2. <view class="main">
  3. <radio-group class="radio-group" onChange="radioChange" name="lib">
  4. <label class="radio flex-box {{index==0? 'margin-b':''}}" a:for="{{tbList}}" key="label-{{index}}">
  5. <radio value="{{item.id}}" checked="{{item.checked}}"/>
  6. <view style="padding-left:12rpx" class="flex-1">
  7. <view style="font-size:16px;font-weight: 600;" class="black">{{item.name}}</view>
  8. <view style="font-size:12px;padding-top: 5px;" class="fontColorC">{{item.kam}}</view>
  9. </view>
  10. </label>
  11. </radio-group>
  12. <view class="userList" catchTap="openSelect">
  13. <text a:if="{{ defaultSection.length==0 }}" class="fontColorC">请选择部门</text>
  14. <view a:else class="font-flex-word">{{deptNames}}</view>
  15. </view>
  16. </view>
  17. <view style="padding:0 32rpx;margin-top:1rem">
  18. <button disabled="{{disabled}}" type="primary" catchTap="formSubmit">提交</button>
  19. </view>
  20. <view class="box" animation="{{animationInfo}}">
  21. <select-section-bottom defaultSection="{{defaultSection}}" onClose="onClose" onConfirm="onSelectSection" a:if="{{isShowType=='1'}}"/>
  22. </view>
  23. </view>