TeachingTool.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <template>
  2. <!-- 教研工具 -->
  3. <div class="Textbook">
  4. <div class="top">
  5. <div class="title">
  6. <span class="text"> 教研工具</span>
  7. </div>
  8. </div>
  9. <div class="class_list">
  10. <div>
  11. <div
  12. style="background: #4ca6ee"
  13. @click="
  14. $router.push({
  15. path: '/TextAnalysis',
  16. })
  17. "
  18. >
  19. <img src="../../assets/teacherdev/jygj-1.png" alt="" />
  20. </div>
  21. <p>文本分析</p>
  22. </div>
  23. <div>
  24. <div
  25. style="background: #d86046"
  26. @click="
  27. $router.push({
  28. path: '/corpus/seekPage',
  29. })
  30. "
  31. >
  32. <img src="../../assets/teacherdev/jygj-2.png" alt="" />
  33. </div>
  34. <p>语料库词典</p>
  35. </div>
  36. <div>
  37. <div
  38. style="background: #c254cc"
  39. @click="
  40. $router.push({
  41. path: '/wordcard/table',
  42. })
  43. "
  44. >
  45. <img src="../../assets/teacherdev/jygj-3.png" alt="" />
  46. </div>
  47. <p>词句卡片</p>
  48. </div>
  49. <!-- <div>
  50. <div
  51. style="background: #54cc92"
  52. @click="
  53. $router.push({
  54. path: '/CalligraphyMaster/table',
  55. })
  56. "
  57. >
  58. <img src="../../assets/teacherdev/jygj-4.png" alt="" />
  59. </div>
  60. <p>书法大师</p>
  61. </div> -->
  62. </div>
  63. </div>
  64. </template>
  65. <script>
  66. export default {
  67. props: ["classList", "type"],
  68. data() {
  69. return {};
  70. },
  71. methods: {},
  72. created() {},
  73. };
  74. </script>
  75. <style lang="scss" scoped>
  76. .Textbook {
  77. .top {
  78. width: 1200px;
  79. margin: 0 auto;
  80. display: flex;
  81. justify-content: space-between;
  82. .title {
  83. width: 100%;
  84. height: 90px;
  85. display: flex;
  86. justify-content: space-between;
  87. align-items: center;
  88. .text {
  89. position: relative;
  90. font-size: 24px;
  91. font-weight: bold;
  92. }
  93. .more {
  94. cursor: pointer;
  95. font-size: 16px;
  96. display: flex;
  97. align-items: center;
  98. span {
  99. opacity: 0.4;
  100. }
  101. img {
  102. width: 25px;
  103. height: 19px;
  104. }
  105. }
  106. }
  107. }
  108. .class_list {
  109. width: 1200px;
  110. box-sizing: border-box;
  111. margin: 0 auto;
  112. background: #fff;
  113. display: flex;
  114. flex-wrap: wrap;
  115. justify-content: flex-start;
  116. padding: 40px 56px;
  117. > div {
  118. // width: 88px;
  119. height: 124px;
  120. cursor: pointer;
  121. margin-right: 42px;
  122. div {
  123. width: 88px;
  124. height: 88px;
  125. display: flex;
  126. justify-content: center;
  127. align-items: center;
  128. border-radius: 8px;
  129. margin: 0 auto;
  130. img {
  131. width: 48px;
  132. height: 48px;
  133. }
  134. }
  135. p {
  136. margin: 0;
  137. margin-top: 10px;
  138. font-weight: 400;
  139. font-size: 20px;
  140. line-height: 26px;
  141. }
  142. }
  143. }
  144. }
  145. </style>