allCourse.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <template>
  2. <view class="web_box">
  3. <!-- <u-navbar height="44" leftIcon="arrow-left" leftIconColor="#000" leftText="全部课程" @leftClick="leftClick" :autoBack="true" bgColor="#fff">
  4. </u-navbar> -->
  5. <view class="tabs hflex acenter">
  6. <u-tabs :list="tabs" :activeStyle="{color: '#2988FE',}" @click="changeTab" :scrollable="false"></u-tabs>
  7. </view>
  8. <view class="list" v-if="active == 0">
  9. <block v-for="(item,index) in course" :key="index">
  10. <view class="list_item hflex acenter">
  11. <image :src="item.img" mode="widthFix" style="width: 322rpx;border-radius: 16rpx;"></image>
  12. <view class="img_right vflex">
  13. <view class="img_title">
  14. {{item.name}}
  15. </view>
  16. <view class="vflex ">
  17. <view class="hours">进度:{{item.study_class_count}}/{{item.class_count}}学时</view>
  18. <view class="progress">
  19. <u-line-progress class="line_progress" :percentage="item.progress" :showText="false" height="8" activeColor="#2988FE"></u-line-progress>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </block>
  25. </view>
  26. <view class="list" v-if="active == 1">
  27. <block v-for="(item,index) in course" :key="index">
  28. <view class="list_item hflex acenter">
  29. <image :src="item.img" mode="widthFix" style="width: 322rpx;border-radius: 16rpx;"></image>
  30. <view class="img_right vflex">
  31. <view class="img_title">
  32. {{item.name}}
  33. </view>
  34. <view class="vflex ">
  35. <view class="hours">全部完成</view>
  36. <view class="progress">
  37. <u-line-progress class="line_progress" :percentage="100" :showText="false" height="8" activeColor="#2988FE"></u-line-progress>
  38. </view>
  39. </view>
  40. </view>
  41. </view>
  42. </block>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. import $api from '@/static/js/api.js'
  48. export default {
  49. data() {
  50. return {
  51. tabs: [
  52. {
  53. name: '在修课程'
  54. },
  55. {
  56. name: '已修课程'
  57. }
  58. ],
  59. active: 0,
  60. course: [],
  61. page: 1,
  62. limit: 10,
  63. total: 0,
  64. type: 1
  65. }
  66. },
  67. onLoad() {
  68. var type = this.type
  69. this.getCourse(type)
  70. },
  71. methods: {
  72. leftClick() {
  73. },
  74. // 获取课程信息
  75. getCourse(type) {
  76. var that = this
  77. $api.req({
  78. url: '/api/User/myCourseList',
  79. data: {
  80. page: that.page,
  81. limit: that.limit,
  82. type: type
  83. }
  84. }, function(res) {
  85. console.log("我的课程",res);
  86. if (res.code == 1) {
  87. that.course = res.data.list
  88. that.total = rea.data.count
  89. that.totalProgress()
  90. }
  91. })
  92. },
  93. // 切换tabs
  94. changeTab(e) {
  95. this.active = e.index
  96. this.course = []
  97. this.page = 0
  98. this.getCourse(this.active + 1)
  99. },
  100. // 计算进度条
  101. totalProgress() {
  102. var course = this.course
  103. for(var i = 0; i<course.length;i++) {
  104. course[i].progress = course[i].study_class_count / course[i].class_count * 100
  105. }
  106. this.course = course
  107. },
  108. // 触底事件
  109. onReachBottom() {
  110. console.log("到底了");
  111. console.log(this.page );
  112. console.log(this.limit);
  113. console.log(Number(this.total));
  114. if (Number(this.page) * Number(this.limit) >= Number(this.total)) {
  115. $api.info("没有更多了")
  116. } else {
  117. this.page++
  118. this.getCourse(this.type)
  119. }
  120. },
  121. }
  122. }
  123. </script>
  124. <style lang="scss" scoped>
  125. .web_box::v-deep {
  126. .u-navbar {
  127. width: 100%;
  128. box-sizing: border-box;
  129. padding: 36px 16px 58rpx 0;
  130. }
  131. .tabs {
  132. width: 100%;
  133. box-sizing: border-box;
  134. padding: 12rpx 0;
  135. background: #FFFFFF;
  136. }
  137. .u-tabs {
  138. width: 100%;
  139. }
  140. .list {
  141. width: 100%;
  142. box-sizing: border-box;
  143. padding: 0 46rpx;
  144. }
  145. .list_item {
  146. width: 100%;
  147. box-sizing: border-box;
  148. padding: 12rpx 14rpx;
  149. background: #FFFFFF;
  150. box-shadow: 0px 2px 6px 0px rgba(213,213,213,0.5);
  151. border-radius: 24rpx;
  152. margin-top: 20rpx;
  153. }
  154. .img_right {
  155. width: calc(100% - 322rpx);
  156. padding-left: 18rpx;
  157. }
  158. .img_title {
  159. font-size: 26rpx;
  160. font-weight: 600;
  161. color: #333333;
  162. padding-bottom: 46rpx;
  163. }
  164. .hours {
  165. font-size: 22rpx;
  166. font-weight: 400;
  167. color: #333333;
  168. }
  169. .progress {
  170. width: 100%;
  171. height: 28rpx;
  172. padding: 16rpx 0 28rpx;
  173. }
  174. .line_progress {
  175. width: 100% !important;
  176. height: 16rpx !important;
  177. }
  178. }
  179. </style>