1234567891011121314151617181920212223242526272829 |
- <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">
- <img-box name="{{item.name}}" imgUrl="{{item.img_url}}" height="70rpx" width="70rpx"></img-box>
- <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;">
- <img-box name="{{item.name}}" imgUrl="{{item.img_url}}" height="70rpx" width="70rpx"></img-box>
- </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>
|