zuji-list.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  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" v-for="(a,b) in list" :key="b">
  17. <view class="title">{{a.date}}</view>
  18. <block v-for="(item,index) in a.list" :key="index">
  19. <u-checkbox v-if="show_manager" activeColor="#57C3C2" shape="circle"
  20. :customStyle="{marginBottom: '8px'}" :name="item.id"></u-checkbox>
  21. <u-swipe-action-item :options="options" @click="tocancel(item)">
  22. <view class="hflex acenter" style="flex:1" v-if="current != 3">
  23. <image :src="item.source.image" mode="aspectFill"></image>
  24. <view class="img-right vflex jbetween">
  25. <text
  26. class="name text_hide2">{{current == 4 ? item.source.name : item.source.title}}</text>
  27. <view class="num hflex acenter" v-if="current != 4">
  28. <text>{{item.source.created_at}}</text>
  29. <text
  30. style="padding-left: 20rpx;">{{item.source.like_count || 0}}喜欢·{{item.source.comment_count || 0}}评论</text>
  31. </view>
  32. <text class="price" v-else>{{item.source.price}}积分</text>
  33. </view>
  34. </view>
  35. <view class="hflex acenter" style="flex:1" v-if="current == 3">
  36. <image :src="item.source.images[0]" mode="aspectFill"
  37. v-if="item.source.images.length>0"></image>
  38. <view class="img-right vflex jbetween">
  39. <text class="name text_hide2">{{item.source.content}}</text>
  40. <view class="num hflex acenter">
  41. <text>{{item.source.created_at}}</text>
  42. <text
  43. style="padding-left: 20rpx;">{{item.source.like_count || 0}}喜欢·{{item.source.comment_count || 0}}评论</text>
  44. </view>
  45. </view>
  46. </view>
  47. </u-swipe-action-item>
  48. </block>
  49. </view>
  50. </u-checkbox-group>
  51. </u-swipe-action>
  52. </view>
  53. <view style="height: 186rpx;" v-if="show_manager"></view>
  54. <view class="bottom hflex acenter jbetween" v-if="show_manager">
  55. <u-checkbox-group placement="column">
  56. <u-checkbox :checked="quanxuan" @change="selectall" activeColor="#57C3C2" shape="circle"
  57. :customStyle="{marginBottom: '8px'}" label="全选"></u-checkbox>
  58. </u-checkbox-group>
  59. <view class="btn">删除</view>
  60. </view>
  61. </view>
  62. </template>
  63. <script>
  64. import $api from '@/static/js/api.js'
  65. export default {
  66. data() {
  67. return {
  68. list: [],
  69. current: 0,
  70. tabs: [{
  71. id: 'info',
  72. name: '资讯'
  73. },
  74. {
  75. id: 'article',
  76. name: '文章'
  77. },
  78. {
  79. id: 'video',
  80. name: '视频'
  81. },
  82. {
  83. id: 'post',
  84. name: '论坛'
  85. },
  86. {
  87. id: 'integral_goods',
  88. name: '商品'
  89. },
  90. ],
  91. options: [{
  92. text: '删除',
  93. style: {
  94. backgroundColor: '#FF5038'
  95. }
  96. }],
  97. show_manager: false,
  98. select_all: [],
  99. quanxuan: false,
  100. page: 1,
  101. last_page: 1
  102. }
  103. },
  104. onLoad() {
  105. this.getlist()
  106. },
  107. onReachBottom() {
  108. if (this.page < this.last_page) {
  109. this.page++
  110. this.getlist()
  111. } else {
  112. uni.$u.toast('已经到底了')
  113. return
  114. }
  115. },
  116. methods: {
  117. /* 全选 */
  118. selectall() {
  119. this.quanxuan = !this.quanxuan
  120. console.log(this.quanxuan);
  121. if (this.quanxuan) {
  122. this.select_all = []
  123. for (var i = 0; i < this.list.length; i++) {
  124. this.select_all.push(this.list[i].id)
  125. }
  126. } else {
  127. this.select_all = []
  128. }
  129. console.log(this.select_all);
  130. },
  131. /* 选择 */
  132. selectitem(e) {
  133. this.select_all = e
  134. if (this.select_all.length == this.list.length) {
  135. this.quanxuan = true
  136. } else {
  137. this.quanxuan = false
  138. }
  139. },
  140. /* 取消收藏 */
  141. tocancel(item) {
  142. },
  143. /* 切换tab */
  144. changetabs(e) {
  145. this.current = e.index
  146. this.select_all = []
  147. this.quanxuan = false
  148. this.list = []
  149. this.getlist()
  150. },
  151. getlist() {
  152. var _this = this
  153. $api.req({
  154. url: 'browse',
  155. data: {
  156. is_page: 1,
  157. page: _this.page,
  158. limit: 10,
  159. source_type: _this.tabs[_this.current].id
  160. }
  161. }, function(res) {
  162. if (res.code == 10000) {
  163. _this.list = _this.list.concat(res.data.list)
  164. _this.last_page = res.data.last_page
  165. }
  166. })
  167. },
  168. },
  169. }
  170. </script>
  171. <style lang="scss">
  172. .content::v-deep {
  173. background: #FFFFFF;
  174. position: relative;
  175. .bottom {
  176. position: fixed;
  177. bottom: 0;
  178. width: 750rpx;
  179. height: 166rpx;
  180. background: #FFFFFF;
  181. padding: 12rpx 28rpx 80rpx;
  182. box-sizing: border-box;
  183. z-index: 29;
  184. .btn {
  185. width: 184rpx;
  186. height: 72rpx;
  187. background: #00B0B0;
  188. border-radius: 36rpx;
  189. font-size: 28rpx;
  190. font-family: PingFangSC, PingFang SC;
  191. font-weight: 400;
  192. color: #FFFFFF;
  193. line-height: 72rpx;
  194. text-align: center;
  195. }
  196. }
  197. .u-swipe-action-item {
  198. margin: 0 0 32rpx;
  199. }
  200. .list {
  201. width: 100%;
  202. box-sizing: border-box;
  203. padding: 28rpx 28rpx;
  204. .list-item {
  205. margin: 0 0 32rpx;
  206. .title {
  207. padding: 20rpx 0;
  208. font-weight: bold;
  209. }
  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>