record.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <template>
  2. <view class="content">
  3. <view class="per_course" v-for="(item,index) in course" :key="index">
  4. <view class="per_name">
  5. <text class="name">懒懒熊</text>
  6. <text class="course_type">私教课</text>
  7. </view>
  8. <view class="per_row">
  9. <text class="lable">总共预约</text>
  10. <text class="num">9次</text>
  11. </view>
  12. <view class="per_row">
  13. <text class="lable">剩余预约</text>
  14. <text class="num">9次</text>
  15. </view>
  16. <view class="time_row">
  17. <text class="lable">到期时间:</text>
  18. <text class="time">2021.09.12</text>
  19. </view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. data() {
  26. return {
  27. course:[1,2],
  28. }
  29. },
  30. onLoad() {
  31. },
  32. methods: {
  33. },
  34. }
  35. </script>
  36. <style lang="scss">
  37. page{
  38. background-color: #F5F5F5;
  39. .content{
  40. .per_course{
  41. width: 351px;
  42. margin: 12px auto 0;
  43. background-color: #FFFFFF;
  44. color: #333333;
  45. padding: 12px;
  46. .per_name{
  47. display: flex;
  48. justify-content: space-between;
  49. align-items: center;
  50. .name{
  51. font-size: 17px;
  52. font-weight: bold;
  53. }
  54. .course_type{
  55. background-color: #E5FAF3;
  56. width: 54px;
  57. height: 24px;
  58. line-height: 24px;
  59. color: #00A421;
  60. font-size: 14px;
  61. text-align: center;
  62. }
  63. }
  64. .per_row{
  65. margin-top: 6px;
  66. .lable{
  67. width: 55px;
  68. height: 21px;
  69. display: inline-block;
  70. line-height: 21px;
  71. text-align: center;
  72. background-color: #F5F5F5;
  73. font-size: 12px;
  74. margin-right: 7px;
  75. }
  76. .num{
  77. font-size: 16px;
  78. color: #FF4600;
  79. }
  80. }
  81. .time_row{
  82. margin-top: 6px;
  83. .lable{
  84. display: inline-block;
  85. width: 60px;
  86. height: 21px;
  87. line-height: 21px;
  88. text-align: center;
  89. font-size: 12px;
  90. }
  91. .time{
  92. font-size: 14px;
  93. font-weight: bold;
  94. }
  95. }
  96. }
  97. }
  98. }
  99. </style>