list.vue 9.7 KB

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