mineClass.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. <template>
  2. <view>
  3. <statusBar :item="navBarData"></statusBar>
  4. <!-- <view class="activeBox" v-for="i in 5" :key="i"> -->
  5. <view class="activeBox" v-for="(item,index) in classList" :key="index">
  6. <view class="teaching_case">
  7. <view class="img">
  8. <!-- <image src="https://teacherapi.cocorobo.cn/teaching-file/static//mine/Rectangle 23.png" mode="aspectFill"></image> -->
  9. <image :src="classList[index].url" mode="aspectFill"></image>
  10. </view>
  11. <view class="right" @click="gotoAnnoun(index)">
  12. <view class="title">
  13. <view class="tag">类型</view>
  14. <text>{{ item.className }}</text>
  15. </view>
  16. <!-- <view class="introduce">
  17. {{ item.th_name }}
  18. </view> -->
  19. <text class="introduce">{{ item.intro }}</text>
  20. <view class="operate">
  21. <view class="left">
  22. <view class="leftCollect">
  23. <view class="icon">
  24. <image src="https://teacherapi.cocorobo.cn/teaching-file/static//mine/Collect_yellow.png"
  25. mode="aspectFill"></image>
  26. </view>
  27. <view class="text">
  28. <span>收藏</span>
  29. </view>
  30. </view>
  31. <view class="leftSubscribe">
  32. <view class="icon">
  33. <image src="https://teacherapi.cocorobo.cn/teaching-file/static//mine/Subscribe_gray.png"
  34. mode="aspectFill"></image>
  35. </view>
  36. <view class="text">
  37. <span>订阅</span>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="btnGoto">
  42. <view class="text">查看详情</view>
  43. <view class="arrow">
  44. <image src="https://teacherapi.cocorobo.cn/teaching-file/static//mine/arrow-right-blue.png"
  45. mode="aspectFill"></image>
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. <view class="" style="padding-bottom: 50rpx;">
  53. </view>
  54. </view>
  55. </template>
  56. <script>
  57. export default {
  58. data() {
  59. return {
  60. navBarData: {
  61. title: '我的教研室',
  62. btn: 1
  63. },
  64. classList: [{
  65. url: "https://teacherapi.cocorobo.cn/teaching-file/static//img/ydjk.png",
  66. className: "运动与健康",
  67. intro:"《运动与健康》全面地阐述体育运动与健康的关系、如何向体育运动要健康、不同运动项目的健康机制、运动损伤的预防与处理等基本内容。"
  68. },
  69. {
  70. url: "https://teacherapi.cocorobo.cn/teaching-file/static//img/shyy.png",
  71. className: "生活英语听说",
  72. intro: " 你想在生活中使用英语和来自中外的朋友们交流吗?这门课中,我们邀请了50多位美国、英国、爱尔兰、加拿大、澳大利亚、哥伦比亚的朋友聊生活常见话题,带你领略一次不一样的英语学习之旅吧。Let’s go!"
  73. },
  74. {
  75. url: "https://teacherapi.cocorobo.cn/teaching-file/static//img/yyll.jpg",
  76. className: "科研伦理与学术规范",
  77. intro:" 所有研究生必须培养其科研与学术的“底线意识”,即遵守科研伦理与学术规范。本课程有助于学生规避学术风险,提高科研规范性,为严谨扎实从事科研工作打好基础。"
  78. },
  79. {
  80. url: "https://teacherapi.cocorobo.cn/teaching-file/static//img/kylw.png",
  81. className: "如何写好科研论文",
  82. intro: " 你在为发表论文发愁吗?你了解准备一篇科研论文需要哪些步骤吗?本课程将为你讲述论文写作的原理,步骤及技巧,帮助你更有效的写作和发表学术论文。"
  83. },
  84. ],
  85. };
  86. },
  87. methods:{
  88. gotoAnnoun(index) {
  89. const value = uni.getStorageSync("login");
  90. if (value == 0) {
  91. uni.navigateTo({
  92. url: "/pages/login/login",
  93. });
  94. } else {
  95. const urls = [
  96. "https://www.xuetangx.com/course/HUBU10011000132/16906642?channel=i.area.course_list_all",
  97. "https://www.xuetangx.com/course/THU05021000376?channel=i.area.course_list_all",
  98. "https://www.xuetangx.com/course/BNU03031000037/16905009?channel=i.area.course_list_all",
  99. "https://www.xuetangx.com/course/THU04011000365/16906220?channel=i.area.course_list_all",
  100. ];
  101. if (index >= 0 && index < urls.length) {
  102. const url = urls[index];
  103. uni.navigateTo({
  104. url: "/pages/skipone/skipone?url=" + encodeURIComponent(url),
  105. });
  106. }
  107. }
  108. },
  109. },
  110. }
  111. </script>
  112. <style lang="scss">
  113. .activeBox {
  114. width: 100%;
  115. background-color: #fff;
  116. padding: 10px 0;
  117. .teaching_case {
  118. display: flex;
  119. justify-content: space-between;
  120. padding: 0 15px;
  121. .img {
  122. width: 180rpx;
  123. height: 180rpx;
  124. image {
  125. width: 100%;
  126. height: 100%;
  127. border-radius: 10rpx;
  128. }
  129. }
  130. .right {
  131. padding-left: 15px;
  132. flex: 1;
  133. width: 100rpx;
  134. display: flex;
  135. flex-direction: column;
  136. align-content: flex-end;
  137. .title {
  138. display: flex;
  139. align-items: center;
  140. margin-bottom: 5px;
  141. .tag {
  142. border: 1px #00b2b6 solid;
  143. font-size: 20rpx;
  144. width: 64rpx;
  145. display: flex;
  146. height: 32rpx;
  147. white-space: nowrap;
  148. justify-content: center;
  149. align-items: center;
  150. // padding: 4px 12px 4px 12px;
  151. border-radius: 5rpx;
  152. margin-right: 10rpx;
  153. color: #00b2b6;
  154. }
  155. text {
  156. width: 180px;
  157. overflow: hidden;
  158. text-overflow: ellipsis;
  159. white-space: nowrap;
  160. }
  161. }
  162. .introduce {
  163. width: 230px;
  164. font-size: 28rpx;
  165. color: #a7a7a7;
  166. margin-top: 8px;
  167. overflow: hidden;
  168. text-overflow: ellipsis;
  169. white-space: nowrap;
  170. }
  171. .operate {
  172. display: flex;
  173. justify-content: space-between;
  174. align-items: flex-end;
  175. margin-top: 15px;
  176. .left {
  177. display: flex;
  178. flex-direction: row;
  179. // justify-content: space-between;
  180. width: 260rpx;
  181. color: #00000099;
  182. font-size: 24rpx;
  183. .leftCollect {
  184. display: flex;
  185. align-items: flex-end;
  186. margin-right: 15px;
  187. .text {
  188. display: flex;
  189. margin-left: 5px;
  190. }
  191. .icon {
  192. display: flex;
  193. image {
  194. width: 32rpx;
  195. height: 32rpx;
  196. }
  197. }
  198. }
  199. .leftSubscribe {
  200. display: flex;
  201. align-items: flex-end;
  202. // margin-left: 15px;
  203. .text {
  204. display: flex;
  205. margin-left: 5px;
  206. }
  207. .icon {
  208. display: flex;
  209. image {
  210. width: 32rpx;
  211. height: 32rpx;
  212. }
  213. }
  214. }
  215. }
  216. .btnGoto {
  217. width: 80px;
  218. // height: 24px;
  219. display: flex;
  220. flex-direction: row;
  221. justify-content: flex-start;
  222. align-items: center;
  223. align-items: flex-end;
  224. .text {
  225. font-size: 24rpx;
  226. color: #3081E8;
  227. }
  228. .arrow {
  229. line-height: 10px;
  230. image {
  231. width: 32rpx;
  232. height: 32rpx;
  233. }
  234. }
  235. }
  236. }
  237. }
  238. }
  239. }
  240. </style>