list.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <!-- 直播列表 -->
  2. <template>
  3. <view class="page_box">
  4. <view class="head_box">
  5. <view class="live-tab">
  6. <view class="live-tab__item" v-for="tab in liveTab" :key="tab.title" @tap="selTab(tab.title)">
  7. <view class="live-tab__item-name">{{ tab.name }}</view>
  8. <text class="live-tab__item--link" :class="{ 'live-tab__item--active': tabCur === tab.title }"></text>
  9. </view>
  10. </view>
  11. </view>
  12. <view class="content_box">
  13. <scroll-view enable-back-to-top scroll-y="true" @scrolltolower="loadMore" class="scroll-box">
  14. <view class="u-waterfall" v-if="!isEmpty">
  15. <view id="u-left-column" class="u-column">
  16. <view class="u-flex u-row-center u-col-center u-m-b-20" v-for="live in leftList" :key="live.id">
  17. <shopro-live-card :type="2" :detail="live"></shopro-live-card>
  18. </view>
  19. </view>
  20. <view id="u-left-column" class="u-column">
  21. <view class="u-flex u-row-center u-col-center u-m-b-20" v-for="live in rightList" :key="live.id">
  22. <shopro-live-card :type="2" :detail="live"></shopro-live-card>
  23. </view>
  24. </view>
  25. </view>
  26. <!-- 更多 -->
  27. <u-loadmore v-if="!isEmpty" height="80rpx" :status="loadStatus" color="#ccc" />
  28. <!-- 置空页 -->
  29. <u-empty :show="isEmpty" mode="list"></u-empty>
  30. </scroll-view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. components: {},
  37. data() {
  38. return {
  39. tabCur: 'all',
  40. isEmpty: false,
  41. liveTab: [
  42. {
  43. title: 'all',
  44. name: '全部'
  45. },
  46. {
  47. title: 'notice',
  48. name: '预告'
  49. },
  50. {
  51. title: 'living',
  52. name: '直播中'
  53. },
  54. {
  55. title: 'lived',
  56. name: '已结束'
  57. }
  58. ],
  59. liveList: [],
  60. loadStatus: 'loadmore', //loadmore-加载前的状态,loading-加载中的状态,nomore-没有更多的状态
  61. currentPage: 1,
  62. lastPage: 1,
  63. // 瀑布流 300-220
  64. addTime: 100, //排序间隙时间
  65. leftHeight: 0,
  66. rightHeight: 0,
  67. leftList: [],
  68. rightList: [],
  69. tempList: []
  70. };
  71. },
  72. computed: {},
  73. onLoad() {
  74. this.getLiveList();
  75. },
  76. onHide() {},
  77. methods: {
  78. // 瀑布流相关
  79. async splitData() {
  80. if (!this.tempList.length) return;
  81. let item = this.tempList[0];
  82. if (!item) return;
  83. // 分左右
  84. if (this.leftHeight < this.rightHeight) {
  85. this.leftHeight += item.goods.length ? 300 : 220;
  86. this.leftList.push(item);
  87. } else if (this.leftHeight > this.rightHeight) {
  88. this.rightHeight += item.goods.length ? 300 : 220;
  89. this.rightList.push(item);
  90. } else {
  91. this.leftHeight += item.goods.length ? 300 : 220;
  92. this.leftList.push(item);
  93. }
  94. // 移除临时列表的第一项,如果临时数组还有数据,继续循环
  95. this.tempList.splice(0, 1);
  96. if (this.tempList.length) {
  97. setTimeout(() => {
  98. this.splitData();
  99. }, this.addTime);
  100. }
  101. },
  102. clear() {
  103. this.leftList = [];
  104. this.rightList = [];
  105. this.leftHeight = 0;
  106. this.rightHeight = 0;
  107. this.tempList = [];
  108. },
  109. // 切换tab
  110. selTab(cur) {
  111. if (this.tabCur !== cur) {
  112. this.tabCur = cur;
  113. this.liveList = [];
  114. this.currentPage = 1;
  115. this.lastPage = 1;
  116. this.clear();
  117. this.getLiveList();
  118. }
  119. },
  120. // 加载更多
  121. loadMore() {
  122. if (this.currentPage < this.lastPage) {
  123. this.currentPage += 1;
  124. this.getLiveList();
  125. }
  126. },
  127. // 直播列表
  128. getLiveList() {
  129. let that = this;
  130. that.loadStatus = 'loading';
  131. that.$http('common.live', {
  132. type: that.tabCur,
  133. page: that.currentPage
  134. }).then(res => {
  135. if (res.code === 1) {
  136. that.liveList = [...that.liveList, ...res.data.data];
  137. that.isEmpty = !that.liveList.length;
  138. that.lastPage = res.data.last_page;
  139. that.loadStatus = that.currentPage < res.data.last_page ? 'loadmore' : 'nomore';
  140. that.tempList = res.data.data;
  141. that.splitData();
  142. }
  143. });
  144. }
  145. }
  146. };
  147. </script>
  148. <style lang="scss">
  149. @mixin vue-flex($direction: row) {
  150. /* #ifndef APP-NVUE */
  151. display: flex;
  152. flex-direction: $direction;
  153. /* #endif */
  154. }
  155. .u-waterfall {
  156. @include vue-flex;
  157. flex-direction: row;
  158. align-items: flex-start;
  159. }
  160. .u-column {
  161. @include vue-flex;
  162. flex: 1;
  163. flex-direction: column;
  164. height: auto;
  165. }
  166. // tab
  167. .live-tab {
  168. width: 100%;
  169. height: 96rpx;
  170. background: #fff;
  171. display: flex;
  172. &__item {
  173. flex: 1;
  174. height: 100%;
  175. display: flex;
  176. flex-direction: column;
  177. justify-content: space-between;
  178. align-items: center;
  179. }
  180. &__item-name {
  181. font-size: 28rpx;
  182. font-weight: bold;
  183. color: rgba(51, 51, 51, 1);
  184. flex: 1;
  185. display: flex;
  186. justify-content: center;
  187. align-items: center;
  188. }
  189. &__item--link {
  190. width: 68rpx;
  191. height: 4rpx;
  192. background: transparent;
  193. border-radius: 2rpx;
  194. }
  195. &__item--active {
  196. width: 68rpx;
  197. height: 4rpx;
  198. background: rgba(213, 166, 90, 1);
  199. border-radius: 2rpx;
  200. }
  201. }
  202. // 瀑布流 list
  203. .scroll-box {
  204. margin: 20rpx auto;
  205. width: 730rpx;
  206. }
  207. </style>