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