collect.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. <template>
  2. <view class="content">
  3. <view class="top hflex acenter jbetween">
  4. <view class="left">共<span class="text_red">{{total}}</span>件商品</view>
  5. <view class="left" :class="is_manager?'text_blue':''" @click="manager">{{is_manager?'完成':'编辑'}}</view>
  6. </view>
  7. <view class="box">
  8. <block v-for="(item,index) in pageList" :key="index">
  9. <view class="item hflex acenter">
  10. <u-checkbox-group v-if="is_manager == 1" placement="column" @change="checkboxChange(index)">
  11. <u-checkbox v-model="item.id" :value="item.id" :checked="item.checked" shape="circle"></u-checkbox>
  12. </u-checkbox-group>
  13. <view class="">
  14. <image :src="item.cover" mode="aspectFill" class="img"></image>
  15. </view>
  16. <view class="vflex" style="margin-left: 24rpx;">
  17. <view class="name">{{item.name}}</view>
  18. <view class="price">¥{{item.price_selling}}</view>
  19. </view>
  20. </view>
  21. </block>
  22. </view>
  23. <view class="bottom hflex acenter jbetween" v-if="is_manager == 1">
  24. <view>
  25. <u-checkbox-group placement="column" @change="checkboxAll2">
  26. <u-checkbox :value="all" :checked="isAllSelected" shape="circle" label="全选"></u-checkbox>
  27. </u-checkbox-group>
  28. </view>
  29. <view class="hflex aend">
  30. <view class="btn2" @click="batchDelete">删除</view>
  31. </view>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. import $api from '@/static/js/api.js'
  37. var that = ''
  38. export default {
  39. data() {
  40. return {
  41. length: 0,
  42. pageList: [
  43. ],
  44. is_manager: 0,
  45. all: '',
  46. isAllSelected: false,
  47. page: 1,
  48. total: 1
  49. }
  50. },
  51. onLoad() {
  52. that = this
  53. that.getList()
  54. },
  55. methods: {
  56. getList() {
  57. $api.req({
  58. url: '/data/api.Goods/collection_list',
  59. data: {
  60. page: that.page
  61. }
  62. }, function(res) {
  63. if(res.code == 1) {
  64. console.log(res);
  65. that.pageList = res.data.data
  66. that.total = res.data.total
  67. }
  68. })
  69. that.totalLength()
  70. },
  71. // 统计商品数量
  72. totalLength() {
  73. that.length = that.pageList.length
  74. },
  75. // 编辑
  76. manager() {
  77. if(that.is_manager == 0) {
  78. that.is_manager = 1
  79. } else {
  80. that.is_manager = 0
  81. }
  82. },
  83. // 全选
  84. checkboxAll2() {
  85. that.isAllSelected = !that.isAllSelected
  86. if(that.isAllSelected) {
  87. for(var i = 0;i<that.pageList.length;i++) {
  88. that.$set(that.pageList[i],'checked',true)
  89. }
  90. } else {
  91. for(var i = 0;i<that.pageList.length;i++) {
  92. that.$set(that.pageList[i],'checked',false)
  93. }
  94. }
  95. },
  96. // 单选
  97. checkboxChange(index) {
  98. that.$set(that.pageList[index],'checked',true)
  99. },
  100. batchDelete() {
  101. var coll_ids = []
  102. console.log(that.pageList);
  103. for(var i = 0;i<that.pageList.length;i++) {
  104. if(that.pageList[i].checked) {
  105. console.log(that.pageList);
  106. coll_ids.push(that.pageList[i].id)
  107. }
  108. }
  109. coll_ids = coll_ids.toString()
  110. $api.req({
  111. url: '/data/api.Goods/del_collection',
  112. data: {
  113. coll_ids: coll_ids
  114. }
  115. }, function(res) {
  116. if(res.code == 1) {
  117. $api.info(res.info)
  118. that.getList()
  119. }
  120. })
  121. },
  122. onReachBottom() {
  123. console.log("到底了");
  124. if (that.page == that.total) {
  125. $api.info("没有更多了")
  126. } else {
  127. this.page++
  128. this.getDatalist()
  129. }
  130. }
  131. },
  132. }
  133. </script>
  134. <style lang="scss" scoped>
  135. .content {
  136. background: #F5F5F5;
  137. .top {
  138. width: 100%;
  139. box-sizing: border-box;
  140. padding: 20rpx 30rpx;
  141. .left {
  142. font-size: 32rpx;
  143. font-weight: 400;
  144. color: #555555;
  145. line-height: 44rpx;
  146. }
  147. .text_red {
  148. color: #FF5E5E;
  149. }
  150. .text_blue {
  151. color: #506DFF;
  152. }
  153. }
  154. .box {
  155. width: 100%;
  156. box-sizing: border-box;
  157. padding: 0 30rpx;
  158. background: #FFFFFF;
  159. .item {
  160. width: 100%;
  161. padding: 20rpx 0 32rpx;
  162. border-bottom: 1rpx solid #F4F4F4;
  163. .img {
  164. width: 196rpx;
  165. height: 196rpx;
  166. border-radius: 16rpx;
  167. }
  168. .name {
  169. font-size: 32rpx;
  170. font-weight: 400;
  171. color: #222222;
  172. line-height: 44rpx;
  173. text-overflow: ellipsis;
  174. overflow: hidden;
  175. display: -webkit-box;
  176. -webkit-box-orient: vertical;
  177. box-orient: vertical;
  178. line-clamp: 2;
  179. -webkit-line-clamp: 2;
  180. }
  181. .price {
  182. font-size: 44rpx;
  183. font-weight: bold;
  184. color: #FF5E5E;
  185. line-height: 52rpx;
  186. padding-top: 32rpx;
  187. }
  188. }
  189. .item:nth-last-child(1) {
  190. border: none;
  191. }
  192. }
  193. .bottom {
  194. width: 100%;
  195. z-index: 9;
  196. position: fixed;
  197. bottom: 0;
  198. height: 166rpx;
  199. background: #FFFFFF;
  200. box-sizing: border-box;
  201. padding: 8rpx 30rpx 74rpx;
  202. .btn2 {
  203. width: 200rpx;
  204. height: 80rpx;
  205. border-radius: 44rpx;
  206. border: 1px solid #506DFF;
  207. font-size: 36rpx;
  208. font-weight: 500;
  209. color: #506DFF;
  210. line-height: 80rpx;
  211. text-align: center;
  212. }
  213. }
  214. }
  215. </style>