train.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <template>
  2. <view class="content">
  3. <u-tabs :list="list" :is-scroll="false" :current="current" @change="change"></u-tabs>
  4. <view class="train" v-for="(item,index) in course" :key="index">
  5. <view class="train_name">
  6. <text class="name">懒懒熊</text>
  7. <text class="course_type">培训班</text>
  8. </view>
  9. <text class="courseName">{{tran_courseName}}</text>
  10. <view class="train_row">
  11. <text class="lable">开班时间</text>
  12. <text class="num">8月20号 10:00 </text>
  13. </view>
  14. <view class="train_row">
  15. <text class="lable">结束时间</text>
  16. <text class="num">9月18号</text>
  17. </view>
  18. <view class="time_row">
  19. <view class="left">
  20. <text class="lable">上课时间:</text>
  21. <text class="time">上午 10:00-12:00</text>
  22. </view>
  23. <view class="right">
  24. <text class="time">下午 10:00-12:00</text>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. data() {
  33. return {
  34. course:[1,2],
  35. tran_courseName:'儿童六一蛙泳培训课'
  36. }
  37. },
  38. onLoad() {
  39. },
  40. methods: {
  41. },
  42. }
  43. </script>
  44. <style lang="scss">
  45. page{
  46. background-color: #F5F5F5;
  47. .content{
  48. .train{
  49. width: 351px;
  50. height: 160px;
  51. margin: 12px auto 0;
  52. background-color: #FFFFFF;
  53. color: #333333;
  54. padding: 12px;
  55. .train_name{
  56. display: flex;
  57. justify-content: space-between;
  58. align-items: center;
  59. .name{
  60. font-size: 17px;
  61. font-weight: bold;
  62. }
  63. .course_type{
  64. background-color: #DCE7FF;
  65. width: 54px;
  66. height: 24px;
  67. line-height: 24px;
  68. color: #4A80FF;
  69. font-size: 14px;
  70. text-align: center;
  71. }
  72. }
  73. .courseName{
  74. display: inline-block;
  75. color: #999999;
  76. font-size: 14px;
  77. margin-top: 6px;
  78. }
  79. .train_row{
  80. margin-top: 6px;
  81. .lable{
  82. width: 55px;
  83. height: 21px;
  84. display: inline-block;
  85. line-height: 21px;
  86. text-align: center;
  87. background-color: #F5F5F5;
  88. font-size: 12px;
  89. margin-right: 7px;
  90. }
  91. .num{
  92. font-size: 14px;
  93. font-weight: bold;
  94. // color: #FF4600;
  95. }
  96. }
  97. .time_row{
  98. margin-top: 6px;
  99. display: flex;
  100. justify-content: space-between;
  101. .lable{
  102. display: inline-block;
  103. width: 60px;
  104. height: 21px;
  105. line-height: 21px;
  106. text-align: center;
  107. font-size: 12px;
  108. // margin-right: 7px;
  109. // box-sizing: content-box;
  110. }
  111. .time{
  112. font-size: 14px;
  113. font-weight: bold;
  114. }
  115. }
  116. }
  117. }
  118. }
  119. </style>