mineCollect.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <template>
  2. <view>
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="collectBox">
  5. <view class="collect_length">
  6. <text>共{{ classList.length }}条收藏</text>
  7. </view>
  8. <!-- <view class="classBox" @click="gotoWeb(index)" v-for="(item,index) in classList" :key="index"> -->
  9. <view class="classBox" v-for="(item,index) in classList" :key="index" @click="gotoDetail" :data-all="item">
  10. <view class="classTitle">
  11. <text>{{ item.acName }}</text>
  12. <image src="https://teacherapi.cocorobo.cn/teaching-file/static/mine/Collect_yellow.png"
  13. mode="aspectFill" @click.stop="coll" :data-e="item"></image>
  14. <!-- <image :src="collArr.includes(item.acId) ? pic2 : '' " style="width: 28rpx; height: 26rpx" mode="aspectFill" @click="coll" :data-e="item"></image> -->
  15. </view>
  16. <view class="classContent">
  17. <view class="contentLeft">
  18. <view class="constDate">
  19. <text class="manage">类型</text>
  20. <text>|</text>
  21. <text class="c_data">{{item.dtime}}</text>
  22. <!-- <text class="c_time">21:07</text> -->
  23. </view>
  24. <view class="classIntro">
  25. <text>{{ item.brief }}</text>
  26. </view>
  27. </view>
  28. <view class="contentRight">
  29. <image :src="item.pic" mode="aspectFill"></image>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. export default {
  38. data() {
  39. return {
  40. navBarData: {
  41. title: '我的收藏',
  42. btn: 1
  43. },
  44. collArr: [], //无用了
  45. classList: [],
  46. };
  47. },
  48. methods: {
  49. getData() {
  50. let data = {
  51. oid: this.$store.state.user.openid, //用户id
  52. type: 0
  53. }
  54. this.$request('/selectOperator', 'POST', data).then(res => {
  55. console.log('获取收藏', res);
  56. this.classList = res[0]
  57. })
  58. },
  59. // 这里获取的活动肯定是已收藏的,就不用判断直接删除就可以了
  60. coll(event) {
  61. let aId = event.currentTarget.dataset.e.acId
  62. let data = {
  63. acid: aId,
  64. oid: this.$store.state.user.openid, //用户id
  65. ty: 0
  66. }
  67. this.$request('/deleteOperator', 'POST', data).then(res => {
  68. console.log(res);
  69. this.getData()
  70. })
  71. },
  72. // 跳转到详情页
  73. gotoDetail(e) {
  74. let data=e.currentTarget.dataset.all
  75. if(data.type<=1){
  76. uni.navigateTo({
  77. url: `/pages/activityDetail/activityDetail?acId=${data.acId}`,
  78. });
  79. }else{
  80. uni.navigateTo({
  81. url: `/pages/teachingDetail/teachingDetail?acId=${data.acId}`
  82. });
  83. }
  84. },
  85. },
  86. onShow() {
  87. this.getData()
  88. }
  89. }
  90. </script>
  91. <style lang="scss">
  92. .collectBox {
  93. margin: 0 30rpx;
  94. // margin-bottom: 30rpx;
  95. padding-bottom: 50rpx;
  96. .collect_length {
  97. width: 100%;
  98. height: 40rpx;
  99. font-size: 24rpx;
  100. font-weight: 400;
  101. color: #00000099;
  102. display: flex;
  103. align-items: center;
  104. margin-top: 6px;
  105. margin-bottom: 6px;
  106. }
  107. .classBox {
  108. width: 100%;
  109. height: 248rpx;
  110. background-color: #fff;
  111. border-radius: 20rpx;
  112. padding: 0 16rpx;
  113. margin-bottom: 20rpx;
  114. .classTitle {
  115. display: flex;
  116. padding-top: 15px;
  117. justify-content: space-between;
  118. margin-bottom: 6px;
  119. text {
  120. font-size: 32rpx;
  121. font-weight: 500;
  122. display: -webkit-box;
  123. word-break: break-all;
  124. text-overflow: ellipsis;
  125. overflow: hidden;
  126. -webkit-box-orient: vertical;
  127. -webkit-line-clamp: 1;
  128. }
  129. image {
  130. width: 32rpx;
  131. height: 32rpx;
  132. }
  133. }
  134. .classContent {
  135. width: 100%;
  136. display: flex;
  137. justify-content: space-between;
  138. .contentLeft {
  139. display: flex;
  140. flex-direction: column;
  141. .constDate {
  142. display: flex;
  143. margin-bottom: 6px;
  144. text {
  145. color: #00000066;
  146. font-size: 24rpx;
  147. font-weight: 400;
  148. &.manage {
  149. border: 1px #00B2B6 solid;
  150. font-size: 10px;
  151. display: flex;
  152. white-space: nowrap;
  153. justify-content: center;
  154. align-items: center;
  155. padding: 1px 6px;
  156. border-radius: 3px;
  157. margin-right: 10rpx;
  158. color: #00B2B6;
  159. font-weight: 600;
  160. }
  161. &:nth-child(2) {
  162. color: #E7E7E7;
  163. ;
  164. margin-left: 4px;
  165. }
  166. &:nth-child(3) {
  167. margin-left: 6px;
  168. }
  169. &:nth-child(4) {
  170. margin-left: 6px;
  171. }
  172. }
  173. }
  174. .classIntro {
  175. width: 93%;
  176. text {
  177. color: #00000099;
  178. font-size: 28rpx;
  179. display: -webkit-box;
  180. word-break: break-all;
  181. text-overflow: ellipsis;
  182. overflow: hidden;
  183. -webkit-box-orient: vertical;
  184. -webkit-line-clamp: 2;
  185. /*设置 需要显示的行数*/
  186. line-height: 23px;
  187. }
  188. }
  189. }
  190. .contentRight {
  191. image {
  192. width: 182rpx;
  193. height: 132rpx;
  194. border-radius: 8rpx;
  195. }
  196. }
  197. }
  198. }
  199. }
  200. </style>