collect.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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="list">
  6. <block v-for="(item,index) in collectList" :key="index">
  7. <view class="list_item hflex acenter" @click="toDetail(index)">
  8. <image :src="item.img" mode="widthFix" style="width: 322rpx;border-radius: 16rpx;"></image>
  9. <view class="img_right">
  10. <view class="title">{{item.name}}</view>
  11. <view class="text_style1">总学时:{{item.period}}学时</view>
  12. <view class="text_style1">讲师:{{item.lecturer}}</view>
  13. <view class="hflex acenter jbetween">
  14. <view class="order_price">¥{{item.price}}</view>
  15. <u-icon v-if="show" name="star-fill" color="#fa6400" size="22" @tap.stop="collect(index)"></u-icon>
  16. <u-icon v-else name="star" color="#fa6400" size="22" ></u-icon>
  17. </view>
  18. </view>
  19. </view>
  20. </block>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. import $api from '@/static/js/api.js'
  26. export default {
  27. data() {
  28. return {
  29. collectList:[],
  30. page: 1,
  31. limit: 10,
  32. total: 0,
  33. show: true
  34. }
  35. },
  36. onLoad() {
  37. this.getList()
  38. },
  39. methods: {
  40. leftClick() {
  41. },
  42. // 获取我的收藏
  43. getList() {
  44. var that = this
  45. $api.req({
  46. url: '/api/User/myCourseList',
  47. data: {
  48. page: that.page,
  49. limit: that.limit,
  50. type: 3
  51. }
  52. }, function(res) {
  53. console.log("我的课程",res);
  54. if (res.code == 1) {
  55. that.collectList = res.data.list
  56. that.total = res.data.count
  57. }
  58. })
  59. },
  60. // 点击前往详情页
  61. toDetail(index) {
  62. let id = this.collectList[index].id
  63. $api.jump('/pages/index/course/detail?id=' + id)
  64. },
  65. // 取消收藏
  66. collect(index) {
  67. var that = this
  68. let id = that.collectList[index].id
  69. $api.req({
  70. url: '/api/Index/collectionCancelCourse',
  71. data: {
  72. id: id,
  73. type: 0
  74. }
  75. }, function(res) {
  76. if (res.code == 1) {
  77. $api.info(res.msg)
  78. that.show = false
  79. }
  80. })
  81. },
  82. // 触底事件
  83. onReachBottom() {
  84. console.log("到底了");
  85. console.log(this.page );
  86. console.log(this.limit);
  87. console.log(Number(this.total));
  88. if (Number(this.page) * Number(this.limit) >= Number(this.total)) {
  89. $api.info("没有更多了")
  90. } else {
  91. this.page++
  92. this.getList()
  93. }
  94. },
  95. }
  96. }
  97. </script>
  98. <style scoped lang="scss">
  99. .web_box::v-deep {
  100. padding: 0 30rpx;
  101. .u-navbar {
  102. width: 100%;
  103. box-sizing: border-box;
  104. padding: 36px 16px 58rpx 0;
  105. }
  106. .list {
  107. width: 100%;
  108. }
  109. .list_item {
  110. width: 100%;
  111. box-sizing: border-box;
  112. padding: 6rpx;
  113. background: #FFFFFF;
  114. box-shadow: 0px 2px 6px 0px rgba(213,213,213,0.5);
  115. border-radius: 24rpx;
  116. margin-top: 20rpx;
  117. }
  118. .img_right {
  119. width: calc(100% - 322rpx);
  120. padding-left: 12rpx;
  121. }
  122. .title {
  123. font-size: 28rpx;
  124. font-weight: 600;
  125. color: #333333;
  126. padding-bottom: 14rpx;
  127. }
  128. .text_style1 {
  129. font-size: 20rpx;
  130. font-weight: 400;
  131. color: #999999;
  132. padding-bottom: 12rpx;
  133. }
  134. .order_price {
  135. font-size: 32rpx;
  136. font-weight: 600;
  137. color: #FA6400;
  138. }
  139. }
  140. </style>