12345678910111213141516171819202122232425262728293031 |
- <view class="all-date">
- <view class="data-tier" catchTap="onClose"></view>
- <view class="staff-header {{isShow?'showPop':''}}">
- <view class="search flex-box flex-v-ce">
- <image mode="scaleToFill" src="../../../image/ss.png"/>
- <input placeholder="请输入姓名搜索" onInput="bindKeyInput"/>
- </view>
- <scroll-view class="staff-ul" scroll-y="{{true}}">
- <checkbox-group class="radio-group" onChange="radioChange">
- <view class="flex-box flex-v-ce userItem" a:for="{{userList}}">
- <label class="flex-box flex-v-ce flex-1">
- <image a:if="{{item.img_url}}" class="img-url" style="width:70rpx;height:70rpx;" src="{{item.img_url}}"/>
- <view a:else style="width: 70rpx;height: 70rpx;border-radius: 100%;background: #26A2FF;color: #fff;text-align: center;line-height: 64rpx;font-size: 24rpx;">{{item.name}}</view>
- <text style="margin-left:20rpx;" class="flex-1">{{item.name}}</text>
- <checkbox value="{{item}}" checked="{{item.checked}}" name="{{item.id}}"/>
- </label>
- </view>
- </checkbox-group>
- </scroll-view>
- <view class="flex-box flex-v-ce selectUsers" a:if="{{selectUserId.length>0}}">
- <view a:for="{{selectUserId}}" style="margin-right:10rpx;height:70rpx;">
- <image a:if="{{item.img_url}}" class="img-url" style="width:70rpx;height:70rpx;" src="{{item.img_url}}"/>
- <view a:else style="width: 70rpx;height: 70rpx;border-radius: 100%;background: #26A2FF;color: #fff;text-align: center;line-height: 64rpx;font-size: 24rpx;">{{item.name}}</view>
- </view>
- </view>
- <view class="flex-box date-btn">
- <view class="flex-1" catchTap="onClose">取消</view>
- <view class="flex-1" catchTap="onConfirm">确定</view>
- </view>
- </view>
- </view>
|