collect-list.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <template>
  2. <view class="content">
  3. <u-navbar title="我的收藏" height="88rpx" :placeholder="true" :autoBack="true">
  4. <view slot="right" class="u-nav-slot">
  5. <text @click="show_manager = !show_manager">管理</text>
  6. </view>
  7. </u-navbar>
  8. <view class="tabs">
  9. <u-tabs :list="tabs" :scrollable="false" lineWidth="0" keyName="name" :current="current" @click="changetabs"
  10. :inactiveStyle="{color: '#999999',fontSize: '30rpx',}"
  11. :activeStyle="{color: '#00B0B0',fontSize: '30rpx',}"></u-tabs>
  12. </view>
  13. <view class="list">
  14. <u-swipe-action>
  15. <u-checkbox-group v-model="select_all" placement="column" @change="selectitem">
  16. <view class="list-item hflex acenter" v-for="(item,index) in list" :key="index"
  17. @click="toinfo(item)">
  18. <u-checkbox v-if="show_manager" activeColor="#57C3C2" shape="circle"
  19. :customStyle="{marginBottom: '8px'}" :name="item.id"></u-checkbox>
  20. <u-swipe-action-item :options="options" @click="tocancel(item)">
  21. <view class="hflex acenter" style="flex:1" v-if="current != 3">
  22. <image :src="item.image" mode="aspectFill"></image>
  23. <view class="img-right vflex jbetween">
  24. <text class="name text_hide2">{{current == 4 ? item.name : item.title}}</text>
  25. <view class="num hflex acenter" v-if="current != 4">
  26. <text>{{item.created_at}}</text>
  27. <text
  28. style="padding-left: 20rpx;">{{item.like_count || 0}}喜欢·{{item.comment_count || 0}}评论</text>
  29. </view>
  30. <text class="price" v-else>{{item.price}}积分</text>
  31. </view>
  32. </view>
  33. <view class="hflex acenter" style="flex:1" v-if="current == 3">
  34. <image :src="item.images[0]" mode="aspectFill" v-if="item.images.length>0"></image>
  35. <view class="img-right vflex jbetween">
  36. <text class="name text_hide2">{{item.content}}</text>
  37. <view class="num hflex acenter">
  38. <text>{{item.created_at}}</text>
  39. <text
  40. style="padding-left: 20rpx;">{{item.like_count || 0}}喜欢·{{item.comment_count || 0}}评论</text>
  41. </view>
  42. </view>
  43. </view>
  44. </u-swipe-action-item>
  45. </view>
  46. </u-checkbox-group>
  47. </u-swipe-action>
  48. </view>
  49. <view style="height: 186rpx;" v-if="show_manager"></view>
  50. <view class="bottom hflex acenter jbetween" v-if="show_manager">
  51. <u-checkbox-group placement="column">
  52. <u-checkbox :checked="quanxuan" @change="selectall" activeColor="#57C3C2" shape="circle"
  53. :customStyle="{marginBottom: '8px'}" label="全选"></u-checkbox>
  54. </u-checkbox-group>
  55. <view class="btn">取消收藏</view>
  56. </view>
  57. </view>
  58. </template>
  59. <script>
  60. import $api from '@/static/js/api.js'
  61. export default {
  62. data() {
  63. return {
  64. list: [],
  65. page: 1,
  66. last_page: 1,
  67. current: 0,
  68. tabs: [{
  69. id: 'info',
  70. name: '资讯'
  71. },
  72. {
  73. id: 'article',
  74. name: '文章'
  75. },
  76. {
  77. id: 'video',
  78. name: '视频'
  79. },
  80. {
  81. id: 'post',
  82. name: '论坛'
  83. },
  84. {
  85. id: 'integral_goods',
  86. name: '商品'
  87. },
  88. ],
  89. options: [{
  90. text: '取消收藏',
  91. style: {
  92. backgroundColor: '#FF5038'
  93. }
  94. }],
  95. show_manager: false,
  96. select_all: [],
  97. quanxuan: false
  98. }
  99. },
  100. onLoad() {
  101. this.getlist()
  102. },
  103. onReachBottom() {
  104. if (this.page < this.last_page) {
  105. this.page++
  106. this.getlist()
  107. } else {
  108. uni.$u.toast('已经到底了')
  109. return
  110. }
  111. },
  112. methods: {
  113. toinfo(item) {
  114. if (this.current != 4) {
  115. uni.navigateTo({
  116. url: '/pageA/info-detail?id=' + item.id + '&type=' + this.tabs[this.current].id
  117. })
  118. } else {
  119. uni.navigateTo({
  120. url: '/pageB/good-detail?id=' + item.id
  121. })
  122. }
  123. },
  124. /* 全选 */
  125. selectall() {
  126. this.quanxuan = !this.quanxuan
  127. console.log(this.quanxuan);
  128. if (this.quanxuan) {
  129. this.select_all = []
  130. for (var i = 0; i < this.list.length; i++) {
  131. this.select_all.push(this.list[i].id)
  132. }
  133. } else {
  134. this.select_all = []
  135. }
  136. },
  137. /* 选择 */
  138. selectitem(e) {
  139. this.select_all = e
  140. if (this.select_all.length == this.list.length) {
  141. this.quanxuan = true
  142. } else {
  143. this.quanxuan = false
  144. }
  145. },
  146. /* 取消收藏 */
  147. tocancel(item) {},
  148. /* 切换tab */
  149. changetabs(e) {
  150. this.current = e.index
  151. this.select_all = []
  152. this.quanxuan = false
  153. this.list = []
  154. this.getlist()
  155. },
  156. getlist() {
  157. var that = this
  158. $api.req({
  159. url: 'summary',
  160. method: 'GET',
  161. data: {
  162. is_page: 1,
  163. page: that.page,
  164. limit: 10,
  165. type: 'collect',
  166. source_type: that.tabs[that.current].id
  167. }
  168. }, function(res) {
  169. if (res.code == 10000) {
  170. that.list = that.list.concat(res.data.list)
  171. that.last_page = res.data.last_page
  172. }
  173. })
  174. },
  175. },
  176. }
  177. </script>
  178. <style lang="scss">
  179. .content::v-deep {
  180. background: #FFFFFF;
  181. position: relative;
  182. .bottom {
  183. position: fixed;
  184. bottom: 0;
  185. width: 750rpx;
  186. height: 166rpx;
  187. background: #FFFFFF;
  188. padding: 12rpx 28rpx 80rpx;
  189. box-sizing: border-box;
  190. z-index: 29;
  191. .btn {
  192. width: 184rpx;
  193. height: 72rpx;
  194. background: #00B0B0;
  195. border-radius: 36rpx;
  196. font-size: 28rpx;
  197. font-family: PingFangSC, PingFang SC;
  198. font-weight: 400;
  199. color: #FFFFFF;
  200. line-height: 72rpx;
  201. text-align: center;
  202. }
  203. }
  204. .list {
  205. width: 100%;
  206. box-sizing: border-box;
  207. padding: 28rpx 28rpx;
  208. .list-item {
  209. margin: 0 0 32rpx;
  210. image {
  211. width: 200rpx;
  212. height: 128rpx;
  213. border-radius: 6rpx;
  214. margin: 0 20rpx 0 0;
  215. }
  216. .img-right {
  217. height: 128rpx;
  218. .name {
  219. max-width: 452rpx;
  220. font-size: 28rpx;
  221. font-family: PingFangSC, PingFang SC;
  222. font-weight: 500;
  223. color: #333333;
  224. padding: 0 0 14rpx;
  225. }
  226. .num {
  227. font-size: 20rpx;
  228. font-family: SFPro, SFPro;
  229. font-weight: 400;
  230. color: #666666;
  231. }
  232. .price {
  233. font-size: 28rpx;
  234. font-family: JDZhengHT, JDZhengHT;
  235. font-weight: 400;
  236. color: #FF3333;
  237. }
  238. }
  239. .u-checkbox {
  240. margin: 0 32rpx 0 0;
  241. }
  242. }
  243. }
  244. .tabs {
  245. width: 100%;
  246. padding: 18rpx 0;
  247. border-bottom: 2rpx solid #F5F5F5;
  248. }
  249. .u-nav-slot {
  250. text {
  251. font-size: 28rpx;
  252. font-family: PingFangSC, PingFang SC;
  253. font-weight: 400;
  254. color: #333333;
  255. }
  256. }
  257. }
  258. </style>