TeachResearch.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <template>
  2. <div class="home">
  3. <div class="title">
  4. <Icon type="ios-home-outline" size="22" />
  5. <p><router-link to="/TeacherZone/ZonesHome">工作室首页</router-link></p><span>>课题研究列表</span>
  6. </div>
  7. <div class="list-info">
  8. <h1 class="list-title">课题列表</h1>
  9. <Tabs class="list" value="name1">
  10. <TabPane label="不限" name="name1">暂时没有课题研究</TabPane>
  11. <TabPane label="国家级" name="name2">暂时没有课题研究</TabPane>
  12. <TabPane label="省级" name="name3">暂时没有课题研究</TabPane>
  13. <TabPane label="市级" name="name4">暂时没有课题研究</TabPane>
  14. <TabPane label="校级" name="name5">暂时没有课题研究</TabPane>
  15. </Tabs>
  16. </div>
  17. <div class="content-info">
  18. <h1 class="list-title">最新课题</h1>
  19. <p>暂无课题</p>
  20. </div>
  21. </div>
  22. </template>
  23. <script>
  24. export default {
  25. data() {
  26. return {
  27. }
  28. },
  29. methods: {
  30. viewDetails() {
  31. this.$router.push({ path: '/TeacherZone/TeachDetails' })
  32. },
  33. chooseTab() {
  34. this.info = this.data;
  35. }
  36. }
  37. }
  38. </script>
  39. <style scoped>
  40. .home {
  41. width: 66%;
  42. height: 500px;
  43. position: absolute;
  44. top: 70%;
  45. left: 53%;
  46. transform: translate(-50%,-50%);
  47. float: left;
  48. display: inline-flex;
  49. }
  50. .title {
  51. font-size: 16px;
  52. text-align: left;
  53. font-weight: 600;
  54. width:300px;
  55. }
  56. .title p {
  57. display: inline;
  58. }
  59. .list-info {
  60. margin-top: 35px;
  61. width: 50%;
  62. background: #fff;
  63. /* float: left; */
  64. margin-left: -24%;
  65. height: 200px;
  66. border: 1px solid #ededed;
  67. }
  68. .list-title {
  69. float: left;
  70. height: 57px;
  71. line-height: 57px;
  72. font-size: 20px;
  73. margin-left:10px;
  74. color: #288add;
  75. border-bottom: 1px solid #288add;
  76. }
  77. .list{
  78. margin-top:10%;
  79. margin-left:1%;
  80. font-size:15px;
  81. }
  82. .content-info {
  83. width: 25%;
  84. height: 200px;
  85. border: 1px solid #ededed;
  86. margin-top: 3%;
  87. margin-left: 4%;
  88. background-color: #ffffff;
  89. }
  90. .content-info p{
  91. margin-top:25%;
  92. font-size:15px;
  93. margin-left:10px;
  94. }
  95. </style>