Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

139 wiersze
2.5 KiB

  1. <template>
  2. <view class="box">
  3. <!-- 顾问选择 -->
  4. <view class="nextcon">
  5. 下一位接待顾问:毛丫丫
  6. </view>
  7. <view class="content">
  8. <radio-group v-model="value" @change="radioChange">
  9. <view class="content-tips">
  10. <view class="left">
  11. <view class="img">
  12. </view>
  13. <view class="text">
  14. <view class="name">
  15. 宋幸运
  16. </view>
  17. <view class="num">
  18. 今日接待: 5
  19. </view>
  20. </view>
  21. </view>
  22. <view class="right">
  23. <radio value="2" style="transform:scale(0.7)" color="#2671E2"></radio>
  24. </view>
  25. </view>
  26. <view class="content-tips">
  27. <view class="left">
  28. <view class="img">
  29. </view>
  30. <view class="text">
  31. <view class="name">
  32. 宋幸运
  33. </view>
  34. <view class="num">
  35. 今日接待: 5
  36. </view>
  37. </view>
  38. </view>
  39. <view class="right">
  40. <radio value="2" style="transform:scale(0.8)" color="#2671E2"></radio>
  41. </view>
  42. </view>
  43. <view class="content-tips">
  44. <view class="left">
  45. <view class="img">
  46. </view>
  47. <view class="text">
  48. <view class="name">
  49. 宋幸运
  50. </view>
  51. <view class="num">
  52. 今日接待: 5
  53. </view>
  54. </view>
  55. </view>
  56. <view class="right">
  57. <radio value="2" style="transform:scale(0.7)" color="#2671E2"></radio>
  58. </view>
  59. </view>
  60. </radio-group>
  61. </view>
  62. </view>
  63. </template>
  64. <script>
  65. export default {
  66. data(){
  67. return{
  68. value:"",
  69. }
  70. },
  71. methods:{
  72. radioChange(e){
  73. console.log(e)
  74. }
  75. }
  76. }
  77. </script>
  78. <style lang="scss" scoped>
  79. .box{
  80. background: #F8F8F8;
  81. width: 100%;
  82. height: 100%;
  83. font-size: 30rpx;
  84. font-weight: 400;
  85. // line-height: 30px;
  86. .nextcon{
  87. height: 78rpx;
  88. background: #F4F8FD;
  89. color: #2671E2;
  90. text-align: center;
  91. line-height: 78rpx;
  92. }
  93. .content-tips{
  94. display: flex;
  95. justify-content: space-between;
  96. background: #fff;
  97. padding: 0 30rpx;
  98. height: 148rpx;
  99. margin-bottom: 20rpx;
  100. .left{
  101. display: flex;
  102. margin-top: 30rpx;
  103. .img{
  104. width: 72rpx;
  105. height: 72rpx;
  106. background: #FFFFFF;
  107. border: 1px solid #C9C9C9;
  108. line-height: 64rpx;
  109. text-align: center;
  110. border-radius: 50%;
  111. margin-right: 20rpx;
  112. }
  113. .text{
  114. .name{
  115. margin-top: 4rpx;
  116. font-weight: 600;
  117. color: #333333;
  118. line-height: 30rpx;
  119. margin-bottom: 24rpx;
  120. }
  121. }
  122. }
  123. .right{
  124. margin: 54rpx 0;
  125. }
  126. }
  127. }
  128. </style>