score.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <template>
  2. <div class="pb_content">
  3. <div class="pb_content_body">
  4. <div class="body_student">
  5. <div class="student_head">
  6. <div class="box_course">
  7. <div class="wheel"><img src="../assets/sp2.png" alt="" /></div>
  8. <div style="font-size: 18px; margin: 15px;">
  9. 鱼类的起源2.0,实践课程
  10. </div>
  11. </div>
  12. </div>
  13. <div class="student_body">
  14. <div style="padding: 20px 30px">
  15. 个人中心 > 我的作品 > 鱼类的起源2.0,实践课程
  16. </div>
  17. <div class="project_box">
  18. <div class="star"><img src="../assets/starts.png" alt="" /></div>
  19. </div>
  20. </div>
  21. <div class="student_body1">
  22. <div style="padding: 20px 30px">评论(2)</div>
  23. <div class="two_ete_box">
  24. <div class="other_evaluate">
  25. <div class="evaluate"><img src="../assets/tx.png" alt="" /></div>
  26. <div class="right_ete">
  27. <div class="first_other_ete">
  28. <div class="ete_name">樟子松</div>
  29. <div class="ete_time">2021/2/5</div>
  30. </div>
  31. <div class="ete_content">
  32. 作为家长我很高兴看到孩子的进步,希望这个进步只是一个开始,在新学期能够继续延续,这样才能不辜负老师的期望。
  33. </div>
  34. </div>
  35. </div>
  36. <div class="other_evaluate">
  37. <div class="evaluate"><img src="../assets/tx.png" alt="" /></div>
  38. <div class="right_ete">
  39. <div class="first_other_ete">
  40. <div class="ete_name">灰色与青</div>
  41. <div class="ete_time">2021/2/5</div>
  42. </div>
  43. <div class="ete_content">作品已经看完了,好看!!</div>
  44. </div>
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. </template>
  52. <script>
  53. export default {
  54. data() {
  55. return {};
  56. },
  57. methods: {},
  58. created() {},
  59. };
  60. </script>
  61. <style scoped>
  62. .body_student {
  63. margin: 0px auto;
  64. width: 80%;
  65. height: 100%;
  66. }
  67. .student_head {
  68. width: 80%;
  69. margin: 0 auto;
  70. background: #fff;
  71. height: 30%;
  72. }
  73. .wheel > img,
  74. .project > img,
  75. .star > img,
  76. .evaluate > img {
  77. width: 100%;
  78. height: 100%;
  79. }
  80. .box_course {
  81. display: flex;
  82. flex-direction: column;
  83. }
  84. .wheel {
  85. width: 100%;
  86. }
  87. .right_box {
  88. display: flex;
  89. flex-direction: column;
  90. margin-left: 30px;
  91. justify-content: space-around;
  92. }
  93. .right_box_title {
  94. font-size: 23px;
  95. }
  96. .people {
  97. display: flex;
  98. }
  99. .student_body,
  100. .student_body1 {
  101. width: 80%;
  102. margin: 0 auto;
  103. background: #fff;
  104. margin-top: 20px;
  105. height: 100%;
  106. }
  107. .student_body1 {
  108. height: 500px !important;
  109. overflow: auto !important;
  110. }
  111. .project {
  112. width: 165px;
  113. }
  114. .project_box {
  115. margin: 0 0 10px 30px;
  116. }
  117. .star {
  118. width: 100%;
  119. }
  120. .evaluate {
  121. width: auto;
  122. height: 65px;
  123. border-radius: 100%;
  124. overflow: hidden;
  125. }
  126. .two_ete_box {
  127. padding: 20px 0 5px 30px;
  128. border-bottom: 1px solid #999;
  129. }
  130. .other_evaluate {
  131. display: flex;
  132. margin-bottom: 25px;
  133. }
  134. .right_ete {
  135. margin-left: 15px;
  136. }
  137. .first_other_ete {
  138. display: flex;
  139. }
  140. .ete_time {
  141. margin-left: 10px;
  142. line-height: 21px;
  143. font-size: 13px;
  144. color: #999;
  145. margin-bottom: 10px;
  146. }
  147. .ete_content {
  148. height: auto;
  149. word-wrap: break-word;
  150. word-break: break-all;
  151. overflow: hidden;
  152. width: 500px;
  153. line-height: 20px;
  154. font-size: 14px;
  155. }
  156. </style>