TeacherZones.vue 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <template>
  2. <div class="zone">
  3. <div class="banner">
  4. <div class="w1200">
  5. <p>李朝华高中物理名师网络工作室</p>
  6. </div>
  7. </div>
  8. <div class="item-nav">
  9. <div class="w1200">
  10. <ul class="nav-li">
  11. <li><router-link to="/TeacherZone/ZonesHome">首页</router-link></li>
  12. <li><router-link to="/TeacherZone/TeacherWork">教学文章</router-link></li>
  13. <li><router-link to="/TeacherZone/TeachSource">教学资源</router-link></li>
  14. <li><router-link to="/TeacherZone/TeachResearch">课题研究</router-link></li>
  15. <li><router-link to="/TeacherZone/TeachTopclass">名师课堂</router-link></li>
  16. <li><router-link to="/TeacherZone/TeachClass">网上评课</router-link></li>
  17. <li><router-link to="/TeacherZone/TeachActivies">教研活动</router-link></li>
  18. <li><router-link to="/TeacherZone/TeachTopic">话题研讨</router-link></li>
  19. </ul>
  20. </div>
  21. </div>
  22. <div class="content">
  23. <router-view></router-view>
  24. </div>
  25. </div>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. }
  32. }
  33. }
  34. </script>
  35. <style scoped>
  36. .zone {
  37. width: 100%;
  38. }
  39. .banner {
  40. height: 340px;
  41. background: url('../../assets/image/resource/banner-t.jpg') center center no-repeat;
  42. }
  43. .w1200 {
  44. width: 1200px;
  45. margin: 0 auto;
  46. }
  47. .banner p {
  48. position: absolute;
  49. left: 30px;
  50. top: 15px;
  51. color: #fff;
  52. font-size: 50px;
  53. }
  54. .item-nav {
  55. background: #0099ff;
  56. height: 60px;
  57. line-height: 60px;
  58. }
  59. .nav-li {
  60. float: left;
  61. list-style: none;
  62. }
  63. .nav-li li {
  64. float: left;
  65. position: relative;
  66. }
  67. .item-nav a {
  68. font-size: 16px;
  69. line-height: 60px;
  70. height: 60px;
  71. width: 120px;
  72. display: block;
  73. text-align: center;
  74. color: #fff;
  75. }
  76. .content{
  77. width:100%;
  78. height:1200px;
  79. /*max-height:1200px;*/
  80. background-color:#f9f9f9;
  81. }
  82. </style>