view-log.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. <!-- 浏览记录 -->
  2. <template>
  3. <view class="page_box">
  4. <view class="head_box u-flex u-row-right" v-show="!isEmpty">
  5. <button class="edit-btn u-reset-button" @tap="onSet">{{ isEdit ? '完成' : '编辑' }}</button>
  6. </view>
  7. <view class="content_box">
  8. <scroll-view scroll-y="true" @scrolltolower="loadMore" class="scroll-box">
  9. <u-checkbox-group @change="checkboxGroupChange" activeColor="#e9b461">
  10. <view class="collect-list u-flex u-flex-1" v-for="f in browseList" :key="f.id">
  11. <u-checkbox v-if="isEdit" :name="f.goods_id" shape="circle" v-model="f.checked"></u-checkbox>
  12. <shopro-mini-card
  13. :image="f.goods.image"
  14. :title="f.goods.title"
  15. :price="f.goods.price"
  16. :originPrice="f.goods.original_price"
  17. :subtitle="f.goods.subtitle"
  18. @click="$Router.push({ path: '/pages/goods/detail', query: { id: f.goods_id } })"
  19. ></shopro-mini-card>
  20. </view>
  21. </u-checkbox-group>
  22. <!-- 缺省页 -->
  23. <shopro-empty
  24. v-if="isEmpty"
  25. :image="$IMG_URL + '/imgs/empty/empty_goods.png'"
  26. tipText="暂无浏览记录"
  27. btnText="去首页逛逛"
  28. @click="$Router.pushTab('/pages/index/index')"
  29. ></shopro-empty>
  30. <!-- 更多 -->
  31. <u-loadmore v-show="!isEmpty" height="80rpx" :status="loadStatus" icon-type="flower" color="#ccc" />
  32. </scroll-view>
  33. </view>
  34. <view class="foot_box ">
  35. <view class="tools-box u-flex u-row-between u-flex-1" v-show="isEdit && !isEmpty">
  36. <u-checkbox shape="circle" activeColor="#e9b461" @change="onAllSel" v-model="isAllSel"><text>全选</text></u-checkbox>
  37. <button class="u-reset-button close-btn" @tap="deleteLog">删除</button>
  38. </view>
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. components: {},
  45. data() {
  46. return {
  47. isEmpty: false, //无数据
  48. isEdit: false, //是否编辑
  49. isAllSel: false, //是否全选
  50. selList: [], //选中列表
  51. browseList: [],
  52. loadStatus: 'loadmore', //loadmore-加载前的状态,loading-加载中的状态,nomore-没有更多的状态
  53. currentPage: 1,
  54. lastPage: 1
  55. };
  56. },
  57. computed: {},
  58. onLoad() {
  59. this.getbrowseList();
  60. },
  61. methods: {
  62. // 单选
  63. checkboxGroupChange(e) {
  64. this.selList = e;
  65. this.isAllSel = this.browseList.every(item => item.checked);
  66. },
  67. // 编辑
  68. onSet() {
  69. this.isEdit = !this.isEdit;
  70. },
  71. // 全选
  72. onAllSel(e) {
  73. this.isAllSel = e.value;
  74. this.selList = [];
  75. this.browseList.forEach(item => {
  76. e.value && this.selList.push(item.goods_id);
  77. this.$set(item, 'checked', e.value);
  78. });
  79. },
  80. // 历史记录
  81. getbrowseList() {
  82. let that = this;
  83. let list = [];
  84. that.loadStatus = 'loading';
  85. that.$http('user.viewList', {
  86. page: that.currentPage
  87. }).then(res => {
  88. if (res.code === 1) {
  89. list = res.data.data;
  90. list.map(item => {
  91. that.$set(item, 'checked', false);
  92. });
  93. that.browseList = [...that.browseList, ...list];
  94. that.isEmpty = !that.browseList.length;
  95. that.lastPage = res.data.last_page;
  96. that.loadStatus = that.currentPage < res.data.last_page ? 'loadmore' : 'nomore';
  97. }
  98. });
  99. },
  100. // 删除足迹
  101. deleteLog() {
  102. let that = this;
  103. const { browseList, selList } = this;
  104. that.$http(
  105. 'user.viewDelete',
  106. {
  107. goods_ids: selList
  108. },
  109. '删除中...'
  110. ).then(res => {
  111. if (res.code === 1) {
  112. if (that.isAllSel) {
  113. that.browseList = [];
  114. that.isEmpty = true;
  115. } else {
  116. that.browseList = browseList.filter(f => !selList.includes(f.goods_id));
  117. }
  118. }
  119. });
  120. },
  121. // 加载更多
  122. loadMore() {
  123. if (this.currentPage < this.lastPage) {
  124. this.currentPage += 1;
  125. this.getbrowseList();
  126. }
  127. }
  128. }
  129. };
  130. </script>
  131. <style lang="scss">
  132. .head_box {
  133. height: 70rpx;
  134. padding: 0 30rpx;
  135. .count-box {
  136. font-size: 26rpx;
  137. color: #999;
  138. .all-num {
  139. color: #a8700d;
  140. }
  141. }
  142. .edit-btn {
  143. background: none;
  144. font-size: 26rpx;
  145. color: #a8700d;
  146. margin: 0;
  147. padding: 20rpx;
  148. }
  149. }
  150. .collect-list {
  151. padding: 30rpx 20rpx;
  152. background: #fff;
  153. width: 750rpx;
  154. margin-bottom: 20rpx;
  155. .goods-radio {
  156. transform: scale(0.7);
  157. margin-right: 20rpx;
  158. }
  159. }
  160. .tools-box {
  161. height: 100rpx;
  162. width: 750rpx;
  163. padding: 0 20rpx;
  164. background: #fff;
  165. .check-all {
  166. font-size: 26rpx;
  167. .check-all-radio {
  168. transform: scale(0.7);
  169. }
  170. }
  171. .close-btn {
  172. width: 200rpx;
  173. line-height: 70rpx;
  174. background: linear-gradient(90deg, rgba(233, 180, 97, 1), rgba(238, 204, 137, 1));
  175. box-shadow: 0px 7rpx 6rpx 0px rgba(229, 138, 0, 0.22);
  176. border-radius: 35rpx;
  177. padding: 0;
  178. margin: 0;
  179. color: rgba(#fff, 0.9);
  180. }
  181. }
  182. </style>