江西小程序管理端
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.

81 lines
1.5 KiB

1 year ago
  1. <template>
  2. <view class="pageBgImg">
  3. <topNavbar title="选择学员"></topNavbar>
  4. <view class="pad">
  5. <view class="searchBox">
  6. <searchRow placeholder="搜索学员姓名、学员手机号"></searchRow>
  7. </view>
  8. <view class="ul">
  9. <view class="li" v-for="(item,index) in 12" :key="index">
  10. <view class="icon">
  11. <image src="@/static/images/index/radio_cli.png" mode=""></image>
  12. <!-- <image src="@/static/images/index/radio.png" mode=""></image> -->
  13. </view>
  14. <view class="name">大乔啊{{index}}</view>
  15. </view>
  16. </view>
  17. <view class="btn_row">
  18. <view class="btnBorder">已选学员4</view>
  19. <view class="btnBg">确认学员</view>
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. }
  29. }
  30. }
  31. </script>
  32. <style lang="scss" scoped>
  33. .btn_row {
  34. position: fixed;
  35. bottom: 0;
  36. left: 0;
  37. padding: 10rpx 28rpx;
  38. z-index: 9;
  39. width: 100%;
  40. }
  41. .searchBox {
  42. padding: 20rpx 0;
  43. }
  44. .ul {
  45. width: 100%;
  46. padding-bottom: 120rpx;
  47. .li {
  48. display: flex;
  49. align-items: center;
  50. height: 108rpx;
  51. background: #FFFFFF;
  52. border-radius: 16rpx;
  53. border: 2rpx solid rgba(25,137,250,0.2);
  54. margin-bottom: 20rpx;
  55. padding: 0 20rpx;
  56. .icon {
  57. width: 32rpx;
  58. height: 32rpx;
  59. }
  60. .name {
  61. padding: 0 20rpx;
  62. }
  63. }
  64. }
  65. .btn_row {
  66. display: flex;
  67. justify-content: space-between;
  68. .btnBorder {
  69. width: 40%;
  70. }
  71. .btnBg {
  72. width: 56%;
  73. }
  74. }
  75. </style>