indexStudent.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <div id="app">
  3. <Header></Header>
  4. <Master></Master>
  5. <div class="wrap ov bodyContent">
  6. <LeftStudent></LeftStudent>
  7. <div class="main fr">
  8. <h4>所在班级 > 六年级·1班</h4>
  9. <div class="content ov">
  10. <dl class="notice fl">
  11. <dt>班级通知 <a href="notice" class="fr">更多+</a></dt>
  12. <dd><a href="/noticeDetail">8月20日上午8点举行奥运知识抢答赛,请班级成员准时参加。 <img src="../assets/image/new.gif" alt=""><span>2019-05-09</span></a></dd>
  13. <dd><a href="">8月20日上午8点举行奥运知识抢答赛,请班级成员准时参加。 <img src="../assets/image/new.gif" alt=""><span>2019-05-09</span></a></dd>
  14. <dd><a href="">8月20日上午8点举行奥运知识抢答赛,请班级成员准时参加。<span>2019-05-09</span></a></dd>
  15. <dd><a href="">8月20日上午8点举行奥运知识抢答赛,请班级成员准时参加。<span>2019-05-09</span></a></dd>
  16. <dd><a href="">8月20日上午8点举行奥运知识抢答赛,请班级成员准时参加。<span>2019-05-09</span></a></dd>
  17. </dl>
  18. <dl class="word fl">
  19. <dt>班级寄语</dt>
  20. <dd>
  21. 班级是船,学生是帆。岁月轮回,抹不去我们在这里洒下的汗水,
  22. 挥不去我们在这里展开的笑颜。愿我们处处祥云罩野马,朝朝吉星
  23. 伴青松。班级空间,让我们一起来书写属于自己的精彩!
  24. </dd>
  25. </dl>
  26. </div>
  27. <div class="content ov">
  28. <dl class="notice source fl " style="width: 100%">
  29. <dt>班级资源 <a href="source" class="fr">更多+</a></dt>
  30. <dd v-for="(item,index) in cls"><a href="/scoreL istDetail" :title="item.title"> <Icon type="ios-paper-outline" style="font-size: 18px;"/> {{item.title}}
  31. <b v-if="index<2"><img src="../assets/image/new.gif" alt=""></b>
  32. <span>发布者:{{item.author}}</span></a></dd>
  33. </dl>
  34. </div>
  35. </div>
  36. </div>
  37. <Footer></Footer>
  38. </div>
  39. </template>
  40. <script>
  41. import Header from '@/common/header.vue'
  42. import Master from '@/common/master.vue'
  43. import LeftStudent from '@/common/leftStudent.vue'
  44. import Footer from '@/common/footer.vue'
  45. export default {
  46. components: {
  47. Header,
  48. Master,
  49. Footer,
  50. LeftStudent,
  51. },
  52. data() {
  53. return {
  54. cls:[
  55. {
  56. id:'1',
  57. title:'五年级上册《平行四边形的面积》(袁晓萍).MP4',
  58. author:'郭一凡'
  59. },
  60. {
  61. id:'2',
  62. title:'《百分数解决问题例2》教学设计(石翠兰).docx',
  63. author:'王晓华'
  64. },
  65. {
  66. id:'3',
  67. title:'第五课 图形的认识与测量(第2课时)(课件).pptx',
  68. author:'车明阳'
  69. },
  70. {
  71. id:'4',
  72. title:'负数的初步认识(六下第一课时).ppt',
  73. author:'李思思'
  74. },
  75. {
  76. id:'5',
  77. title:'王宏伟:用比例解决问题.ppt',
  78. author:'王宏伟'
  79. },
  80. {
  81. id:'6',
  82. title:'圆柱与圆锥的认识 课件',
  83. author:'高哲'
  84. },
  85. {
  86. id:'7',
  87. title:'第五课 图形的认识与测量(第1课时)(课件).pptx',
  88. author:'马雪瑞'
  89. },
  90. ]
  91. }
  92. },
  93. mounted() {
  94. }
  95. }
  96. </script>