list.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. <template>
  2. <s-layout navbar="normal" :leftWidth="0" :rightWidth="0" tools="search" :defaultSearch="state.keyword"
  3. @search="onSearch">
  4. <!-- 筛选 -->
  5. <su-sticky bgColor="#fff">
  6. <view class="ss-flex">
  7. <view class="ss-flex-1">
  8. <su-tabs :list="state.tabList" :scrollable="false" @change="onTabsChange"
  9. :current="state.currentTab" />
  10. </view>
  11. <view class="list-icon" @tap="state.iconStatus = !state.iconStatus">
  12. <text v-if="state.iconStatus" class="sicon-goods-list" />
  13. <text v-else class="sicon-goods-card" />
  14. </view>
  15. </view>
  16. </su-sticky>
  17. <!-- 弹窗 -->
  18. <su-popup :show="state.showFilter" type="top" round="10" :space="sys_navBar + 38" backgroundColor="#F6F6F6"
  19. :zIndex="10" @close="state.showFilter = false">
  20. <view class="filter-list-box">
  21. <view class="filter-item" v-for="(item, index) in state.tabList[state.currentTab].list"
  22. :key="item.value" :class="[{ 'filter-item-active': index === state.curFilter }]"
  23. @tap="onFilterItem(index)">
  24. {{ item.label }}
  25. </view>
  26. </view>
  27. </su-popup>
  28. <!-- 情况一:单列布局 -->
  29. <view v-if="state.iconStatus && state.pagination.total > 0" class="goods-list ss-m-t-20">
  30. <view class="ss-p-l-20 ss-p-r-20 ss-m-b-20" v-for="item in state.pagination.list" :key="item.id">
  31. <s-goods-column
  32. class=""
  33. size="lg"
  34. :data="item"
  35. :topRadius="10"
  36. :bottomRadius="10"
  37. @click="sheep.$router.go('/pages/goods/index', { id: item.id })"
  38. />
  39. </view>
  40. </view>
  41. <!-- 情况二:双列布局 -->
  42. <view v-if="!state.iconStatus && state.pagination.total > 0"
  43. class="ss-flex ss-flex-wrap ss-p-x-20 ss-m-t-20 ss-col-top">
  44. <view class="goods-list-box">
  45. <view class="left-list" v-for="item in state.leftGoodsList" :key="item.id">
  46. <s-goods-column
  47. class="goods-md-box"
  48. size="md"
  49. :data="item"
  50. :topRadius="10"
  51. :bottomRadius="10"
  52. @click="sheep.$router.go('/pages/goods/index', { id: item.id })"
  53. @getHeight="mountMasonry($event, 'left')"
  54. >
  55. <template v-slot:cart>
  56. <button class="ss-reset-button cart-btn" />
  57. </template>
  58. </s-goods-column>
  59. </view>
  60. </view>
  61. <view class="goods-list-box">
  62. <view class="right-list" v-for="item in state.rightGoodsList" :key="item.id">
  63. <s-goods-column
  64. class="goods-md-box"
  65. size="md"
  66. :topRadius="10"
  67. :bottomRadius="10"
  68. :data="item"
  69. @click="sheep.$router.go('/pages/goods/index', { id: item.id })"
  70. @getHeight="mountMasonry($event, 'right')"
  71. >
  72. <template v-slot:cart>
  73. <button class="ss-reset-button cart-btn" />
  74. </template>
  75. </s-goods-column>
  76. </view>
  77. </view>
  78. </view>
  79. <uni-load-more v-if="state.pagination.total > 0" :status="state.loadStatus" :content-text="{
  80. contentdown: '上拉加载更多',
  81. }" @tap="loadMore" />
  82. <s-empty v-if="state.pagination.total === 0" icon="/static/soldout-empty.png" text="暂无商品" />
  83. </s-layout>
  84. </template>
  85. <script setup>
  86. import { reactive } from 'vue';
  87. import { onLoad, onReachBottom } from '@dcloudio/uni-app';
  88. import sheep from '@/sheep';
  89. import _ from 'lodash';
  90. import { resetPagination } from '@/sheep/util';
  91. import SpuApi from '@/sheep/api/product/spu';
  92. import { t } from '@/locale'
  93. const sys_navBar = sheep.$platform.navbar;
  94. const emits = defineEmits(['close', 'change']);
  95. const state = reactive({
  96. pagination: {
  97. list: [],
  98. total: 0,
  99. pageNo: 1,
  100. pageSize: 6,
  101. },
  102. currentSort: undefined,
  103. currentOrder: undefined,
  104. currentTab: 0, // 当前选中的 tab
  105. curFilter: 0, // 当前选中的 list 筛选项
  106. showFilter: false,
  107. iconStatus: false, // true - 单列布局;false - 双列布局
  108. keyword: '',
  109. categoryId: 0,
  110. tabList: [{
  111. name: t('common.recommended'),
  112. list: [{
  113. label: t('common.recommended')
  114. },
  115. {
  116. label: t('common.price_asc'),
  117. sort: 'price',
  118. order: true,
  119. },
  120. {
  121. label: t('common.price_desc'),
  122. sort: 'price',
  123. order: false,
  124. },
  125. ],
  126. },
  127. {
  128. name: t('common.sales'),
  129. sort: 'salesCount',
  130. order: false
  131. },
  132. {
  133. name: t('common.newest'),
  134. value: 'createTime',
  135. order: false
  136. },
  137. ],
  138. loadStatus: '',
  139. leftGoodsList: [], // 双列布局 - 左侧商品
  140. rightGoodsList: [], // 双列布局 - 右侧商品
  141. });
  142. // 加载瀑布流
  143. let count = 0;
  144. let leftHeight = 0;
  145. let rightHeight = 0;
  146. // 处理双列布局 leftGoodsList + rightGoodsList
  147. function mountMasonry(height = 0, where = 'left') {
  148. if (!state.pagination.list[count]) {
  149. return;
  150. }
  151. if (where === 'left') {
  152. leftHeight += height;
  153. } else {
  154. rightHeight += height;
  155. }
  156. if (leftHeight <= rightHeight) {
  157. state.leftGoodsList.push(state.pagination.list[count]);
  158. } else {
  159. state.rightGoodsList.push(state.pagination.list[count]);
  160. }
  161. count++;
  162. }
  163. // 清空列表
  164. function emptyList() {
  165. resetPagination(state.pagination);
  166. state.leftGoodsList = [];
  167. state.rightGoodsList = [];
  168. count = 0;
  169. leftHeight = 0;
  170. rightHeight = 0;
  171. }
  172. // 搜索
  173. function onSearch(e) {
  174. state.keyword = e;
  175. emptyList();
  176. getList(state.currentSort, state.currentOrder);
  177. }
  178. // 点击
  179. function onTabsChange(e) {
  180. // 如果点击的是【综合推荐】,则直接展开或者收起筛选项
  181. if (state.tabList[e.index].list) {
  182. state.currentTab = e.index;
  183. state.showFilter = !state.showFilter;
  184. return;
  185. }
  186. state.showFilter = false;
  187. // 如果点击的是【销量】或者【新品优先】,则直接切换 tab
  188. if (e.index === state.currentTab) {
  189. return;
  190. }
  191. state.currentTab = e.index;
  192. state.currentSort = e.sort;
  193. state.currentOrder = e.order;
  194. emptyList();
  195. getList(e.sort, e.order);
  196. }
  197. // 点击 tab 的 list 筛选项
  198. const onFilterItem = (val) => {
  199. // 如果点击的是当前的筛选项,则直接收起筛选项,不要加载数据
  200. // 这里选择 tabList[0] 的原因,是目前只有它有 list
  201. if (state.currentSort === state.tabList[0].list[val].sort
  202. && state.currentOrder === state.tabList[0].list[val].order) {
  203. state.showFilter = false;
  204. return;
  205. }
  206. state.showFilter = false;
  207. // 设置筛选条件
  208. state.curFilter = val;
  209. state.tabList[0].name = state.tabList[0].list[val].label;
  210. state.currentSort = state.tabList[0].list[val].sort;
  211. state.currentOrder = state.tabList[0].list[val].order;
  212. // 清空 + 加载数据
  213. emptyList();
  214. getList();
  215. }
  216. async function getList() {
  217. state.loadStatus = 'loading';
  218. const { code, data } = await SpuApi.getSpuPage({
  219. pageNo: state.pagination.pageNo,
  220. pageSize: state.pagination.pageSize,
  221. sortField: state.currentSort,
  222. sortAsc: state.currentOrder,
  223. categoryId: state.categoryId,
  224. keyword: state.keyword,
  225. });
  226. if (code !== 0) {
  227. return;
  228. }
  229. state.pagination.list = _.concat(state.pagination.list, data.list)
  230. state.pagination.total = data.total;
  231. state.loadStatus = state.pagination.list.length < state.pagination.total ? 'more' : 'noMore';
  232. mountMasonry();
  233. }
  234. // 加载更多
  235. function loadMore() {
  236. if (state.loadStatus === 'noMore') {
  237. return;
  238. }
  239. state.pagination.pageNo++;
  240. getList(state.currentSort, state.currentOrder);
  241. }
  242. onLoad((options) => {
  243. state.categoryId = options.categoryId;
  244. state.keyword = options.keyword;
  245. getList(state.currentSort, state.currentOrder);
  246. });
  247. // 上拉加载更多
  248. onReachBottom(() => {
  249. loadMore();
  250. });
  251. </script>
  252. <style lang="scss" scoped>
  253. .goods-list-box {
  254. width: 50%;
  255. box-sizing: border-box;
  256. .left-list {
  257. margin-right: 10rpx;
  258. margin-bottom: 20rpx;
  259. }
  260. .right-list {
  261. margin-left: 10rpx;
  262. margin-bottom: 20rpx;
  263. }
  264. }
  265. .goods-box {
  266. &:nth-last-of-type(1) {
  267. margin-bottom: 0 !important;
  268. }
  269. &:nth-child(2n) {
  270. margin-right: 0;
  271. }
  272. }
  273. .list-icon {
  274. width: 80rpx;
  275. .sicon-goods-card {
  276. font-size: 40rpx;
  277. }
  278. .sicon-goods-list {
  279. font-size: 40rpx;
  280. }
  281. }
  282. .goods-card {
  283. margin-left: 20rpx;
  284. }
  285. .list-filter-tabs {
  286. background-color: #fff;
  287. }
  288. .filter-list-box {
  289. padding: 28rpx 52rpx;
  290. .filter-item {
  291. font-size: 28rpx;
  292. font-weight: 500;
  293. color: #333333;
  294. line-height: normal;
  295. margin-bottom: 24rpx;
  296. &:nth-last-child(1) {
  297. margin-bottom: 0;
  298. }
  299. }
  300. .filter-item-active {
  301. color: var(--ui-BG-Main);
  302. }
  303. }
  304. .tab-item {
  305. height: 50px;
  306. position: relative;
  307. z-index: 11;
  308. .tab-title {
  309. font-size: 30rpx;
  310. }
  311. .cur-tab-title {
  312. font-weight: $font-weight-bold;
  313. }
  314. .tab-line {
  315. width: 60rpx;
  316. height: 6rpx;
  317. border-radius: 6rpx;
  318. position: absolute;
  319. left: 50%;
  320. transform: translateX(-50%);
  321. bottom: 10rpx;
  322. background-color: var(--ui-BG-Main);
  323. z-index: 12;
  324. }
  325. }
  326. </style>