You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <view class="pageBgImg"> <topNavbar title="选择学员"></topNavbar> <view class="pad"> <view class="searchBox"> <searchRow placeholder="搜索学员姓名、学员手机号"></searchRow> </view> <view class="ul"> <view class="li" v-for="(item,index) in 12" :key="index"> <view class="icon"> <image src="@/static/images/index/radio_cli.png" mode=""></image> <!-- <image src="@/static/images/index/radio.png" mode=""></image> --> </view> <view class="name">大乔啊{{index}}</view> </view> </view> <view class="btn_row"> <view class="btnBorder">已选学员(4)</view> <view class="btnBg">确认学员</view> </view> </view> </view> </template>
<script> export default { data() { return { } } } </script>
<style lang="scss" scoped> .btn_row { position: fixed; bottom: 0; left: 0; padding: 10rpx 28rpx; z-index: 9; width: 100%; } .searchBox { padding: 20rpx 0; } .ul { width: 100%; padding-bottom: 120rpx; .li { display: flex; align-items: center; height: 108rpx; background: #FFFFFF; border-radius: 16rpx; border: 2rpx solid rgba(25,137,250,0.2); margin-bottom: 20rpx; padding: 0 20rpx; .icon { width: 32rpx; height: 32rpx; } .name { padding: 0 20rpx; } } } .btn_row { display: flex; justify-content: space-between; .btnBorder { width: 40%; } .btnBg { width: 56%; } } </style>
|