selectStaff.axml 1.4 KB

1234567891011121314151617181920212223242526272829
  1. <view class="all-date">
  2. <view class="data-tier" catchTap="onClose"></view>
  3. <view class="staff-header {{isShow?'showPop':''}}">
  4. <view class="search flex-box flex-v-ce">
  5. <image mode="scaleToFill" src="../../../image/ss.png"/>
  6. <input placeholder="请输入姓名搜索" onInput="bindKeyInput"/>
  7. </view>
  8. <scroll-view class="staff-ul" scroll-y="{{true}}">
  9. <checkbox-group class="radio-group" onChange="radioChange">
  10. <view class="flex-box flex-v-ce userItem" a:for="{{userList}}">
  11. <label class="flex-box flex-v-ce flex-1">
  12. <img-box name="{{item.name}}" imgUrl="{{item.img_url}}" height="70rpx" width="70rpx"></img-box>
  13. <text style="margin-left:20rpx;" class="flex-1">{{item.name}}</text>
  14. <checkbox value="{{item}}" checked="{{item.checked}}" name="{{item.id}}"/>
  15. </label>
  16. </view>
  17. </checkbox-group>
  18. </scroll-view>
  19. <view class="flex-box flex-v-ce selectUsers" a:if="{{selectUserId.length>0}}">
  20. <view a:for="{{selectUserId}}" style="margin-right:10rpx;height:70rpx;">
  21. <img-box name="{{item.name}}" imgUrl="{{item.img_url}}" height="70rpx" width="70rpx"></img-box>
  22. </view>
  23. </view>
  24. <view class="flex-box date-btn">
  25. <view class="flex-1" catchTap="onClose">取消</view>
  26. <view class="flex-1" catchTap="onConfirm">确定</view>
  27. </view>
  28. </view>
  29. </view>