list.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. <template>
  2. <view class="content">
  3. <view class="navbar" :style="{ position: headerPosition, top: headerTop }">
  4. <view class="nav-item" :class="{ current: filterIndex === 0 }" @click="tabClick(0)">综合排序</view>
  5. <view class="nav-item" :class="{ current: filterIndex === 1 }" @click="tabClick(1)">
  6. <text>销量优先</text>
  7. <view class="p-box">
  8. <text :class="{ active: numberOrder === 1 && filterIndex === 1 }" class="iconfont iconfold"></text>
  9. <text :class="{ active: numberOrder === 2 && filterIndex === 1 }" class="iconfont iconfold xia"></text>
  10. </view>
  11. </view>
  12. <view class="nav-item" :class="{ current: filterIndex === 2 }" @click="tabClick(2)">
  13. <text>价格</text>
  14. <view class="p-box">
  15. <text :class="{ active: priceOrder === 1 && filterIndex === 2 }" class="iconfont iconfold"></text>
  16. <text :class="{ active: priceOrder === 2 && filterIndex === 2 }" class="iconfont iconfold xia"></text>
  17. </view>
  18. </view>
  19. <text class="cate-item iconfont iconapps" @click="toggleCateMask('show')"></text>
  20. </view>
  21. <view class="goods-list">
  22. <view v-for="(item, index) in goodsList" :key="index" class="goods-item" @click="navToDetailPage(item)">
  23. <view class="image-wrapper"><image :src="item.image" mode="aspectFill"></image></view>
  24. <text class="title clamp">{{ item.title }}</text>
  25. <view class="price-box">
  26. <text class="price">{{ item.price }}</text>
  27. <text>已售 {{ item.sales }}</text>
  28. </view>
  29. </view>
  30. </view>
  31. <uni-load-more :status="loadingType"></uni-load-more>
  32. <view class="cate-mask" :class="cateMaskState === 0 ? 'none' : cateMaskState === 1 ? 'show' : ''" @click="toggleCateMask">
  33. <view class="cate-content" @click.stop.prevent="stopPrevent" @touchmove.stop.prevent="stopPrevent">
  34. <scroll-view scroll-y class="cate-list">
  35. <view v-for="item in cateList" :key="item.id">
  36. <view class="cate-item b-b two">{{ item.cate_name }}</view>
  37. <view v-for="tItem in item.children" :key="tItem.id" class="cate-item b-b" :class="{ active: tItem.id == cateId }" @click="changeCate(tItem)">
  38. {{ tItem.cate_name }}
  39. </view>
  40. </view>
  41. </scroll-view>
  42. </view>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. import uniLoadMore from '@/components/uni-load-more/uni-load-more.vue';
  48. import { getProducts } from '@/api/product.js';
  49. import { getCategoryList } from '@/api/product.js';
  50. export default {
  51. components: {
  52. uniLoadMore
  53. },
  54. data() {
  55. return {
  56. cateMaskState: 0, //分类面板展开状态
  57. headerPosition: 'fixed',
  58. headerTop: '0px',
  59. loadingType: 'more', //加载更多状态
  60. filterIndex: 0, //查询类型
  61. numberOrder: 0, //1 销量从低到高 2销量从高到低
  62. limit: 6, //每次加载数据条数
  63. page: 0, //当前页数
  64. cateId: 0, //已选三级分类id
  65. priceOrder: 0, //1 价格从低到高 2价格从高到低
  66. cateList: [], //分类列表
  67. goodsList: [] //商品列表
  68. };
  69. },
  70. onLoad(options) {
  71. // #ifdef H5
  72. this.headerTop = document.getElementsByTagName('uni-page-head')[0].offsetHeight + 'px';
  73. // #endif
  74. this.cateId = options.tid;
  75. this.loadCateList(options.fid, options.sid);
  76. this.loadData();
  77. },
  78. onPageScroll(e) {
  79. //兼容iOS端下拉时顶部漂移
  80. if (e.scrollTop >= 0) {
  81. this.headerPosition = 'fixed';
  82. } else {
  83. this.headerPosition = 'absolute';
  84. }
  85. },
  86. //下拉刷新
  87. onPullDownRefresh() {
  88. this.loadData('refresh');
  89. },
  90. //监听页面是否滚动到底部加载更多
  91. onReachBottom() {
  92. this.loadData();
  93. },
  94. methods: {
  95. //加载分类
  96. async loadCateList(fid, sid) {
  97. let obj = this;
  98. getCategoryList({}).then(function(e) {
  99. console.log(e);
  100. e.data.forEach(function(e) {
  101. if (e.id == fid) {
  102. obj.cateList = e.children;
  103. return;
  104. }
  105. });
  106. console.log(obj.cateList);
  107. });
  108. },
  109. //加载商品 ,带下拉刷新和上滑加载
  110. async loadData(type = 'add', loading) {
  111. let obj = this;
  112. let data = {
  113. page: obj.page,
  114. limit: obj.limit,
  115. sid: obj.cateId //分类id
  116. };
  117. //没有更多直接返回
  118. if (type === 'add') {
  119. if (obj.loadingType === 'nomore') {
  120. return;
  121. }
  122. obj.loadingType = 'loading';
  123. } else {
  124. obj.loadingType = 'more';
  125. }
  126. if (type === 'refresh') {
  127. // 清空数组
  128. obj.goodsList = [];
  129. obj.page = 1
  130. }
  131. if (this.filterIndex == 1) {
  132. console.log( obj.salesOrder);
  133. data.salesOrder = obj.numberOrder == 1 ? 'asc' : 'desc';
  134. }
  135. if (this.filterIndex == 2) {
  136. console.log( obj.priceOrder);
  137. data.priceOrder = obj.priceOrder == 1 ? 'asc' : 'desc';
  138. }
  139. getProducts(data).then(function(e) {
  140. console.log(e.data);
  141. obj.goodsList = obj.goodsList.concat(e.data);
  142. //判断是否还有下一页,有是more 没有是nomore
  143. if (obj.limit==e.data.length) {
  144. obj.page++
  145. obj.loadingType='more'
  146. } else{
  147. obj.loadingType='nomore'
  148. }
  149. if (type === 'refresh') {
  150. if (loading == 1) {
  151. uni.hideLoading();
  152. } else {
  153. uni.stopPullDownRefresh();
  154. }
  155. }
  156. });
  157. },
  158. //筛选点击
  159. tabClick(index) {
  160. // 防止重复点击综合排序
  161. if (this.filterIndex === 0 && this.filterIndex === index) {
  162. return;
  163. }
  164. this.filterIndex = index;
  165. // 判断是否为销量优先
  166. if (index === 1) {
  167. this.numberOrder = this.numberOrder === 1 ? 2 : 1;
  168. }
  169. // 判断是否为价格优先
  170. if (index === 2) {
  171. this.priceOrder = this.priceOrder === 1 ? 2 : 1;
  172. }
  173. // 初始化页数
  174. this.page = 1;
  175. // 初始化数组
  176. uni.pageScrollTo({
  177. duration: 300,
  178. scrollTop: 0
  179. });
  180. this.loadData('refresh', 1);
  181. uni.showLoading({
  182. title: '正在加载'
  183. });
  184. },
  185. //显示分类面板
  186. toggleCateMask(type) {
  187. let timer = type === 'show' ? 10 : 300;
  188. let state = type === 'show' ? 1 : 0;
  189. this.cateMaskState = 2;
  190. setTimeout(() => {
  191. this.cateMaskState = state;
  192. }, timer);
  193. },
  194. //分类点击
  195. changeCate(item) {
  196. this.cateId = item.id;
  197. // 显示右侧分类
  198. this.toggleCateMask();
  199. // 滚轮返回顶部
  200. uni.pageScrollTo({
  201. duration: 300,
  202. scrollTop: 0
  203. });
  204. // 初始化查询页数
  205. this.page = 1
  206. // 重新加载数据
  207. this.loadData('refresh', 1);
  208. uni.showLoading({
  209. title: '正在加载'
  210. });
  211. },
  212. //详情
  213. navToDetailPage(item) {
  214. let id = item.id;
  215. uni.navigateTo({
  216. url: `/pages/product/product?id=${id}`
  217. });
  218. },
  219. stopPrevent() {}
  220. }
  221. };
  222. </script>
  223. <style lang="scss">
  224. page,
  225. .content {
  226. background: $page-color-base;
  227. }
  228. .content {
  229. padding-top: 96rpx;
  230. }
  231. .navbar {
  232. position: fixed;
  233. left: 0;
  234. top: var(--window-top);
  235. display: flex;
  236. width: 100%;
  237. height: 80rpx;
  238. background: #fff;
  239. box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.06);
  240. z-index: 10;
  241. .nav-item {
  242. flex: 1;
  243. display: flex;
  244. justify-content: center;
  245. align-items: center;
  246. height: 100%;
  247. font-size: 30rpx;
  248. color: $font-color-dark;
  249. position: relative;
  250. &.current {
  251. color: $base-color;
  252. &:after {
  253. content: '';
  254. position: absolute;
  255. left: 50%;
  256. bottom: 0;
  257. transform: translateX(-50%);
  258. width: 120rpx;
  259. height: 0;
  260. border-bottom: 4rpx solid $base-color;
  261. }
  262. }
  263. }
  264. .p-box {
  265. display: flex;
  266. flex-direction: column;
  267. .iconfont {
  268. display: flex;
  269. align-items: center;
  270. justify-content: center;
  271. width: 30rpx;
  272. height: 14rpx;
  273. line-height: 1;
  274. margin-left: 4rpx;
  275. font-size: 26rpx;
  276. color: #888;
  277. &.active {
  278. color: $base-color;
  279. }
  280. }
  281. .xia {
  282. transform: scaleY(-1);
  283. }
  284. }
  285. .cate-item {
  286. display: flex;
  287. justify-content: center;
  288. align-items: center;
  289. height: 100%;
  290. width: 80rpx;
  291. position: relative;
  292. font-size: 44rpx;
  293. &:after {
  294. content: '';
  295. position: absolute;
  296. left: 0;
  297. top: 50%;
  298. transform: translateY(-50%);
  299. border-left: 1px solid #ddd;
  300. width: 0;
  301. height: 36rpx;
  302. }
  303. }
  304. }
  305. /* 分类 */
  306. .cate-mask {
  307. position: fixed;
  308. left: 0;
  309. top: var(--window-top);
  310. bottom: 0;
  311. width: 100%;
  312. background: rgba(0, 0, 0, 0);
  313. z-index: 95;
  314. transition: 0.3s;
  315. .cate-content {
  316. width: 630rpx;
  317. height: 100%;
  318. background: #fff;
  319. float: right;
  320. transform: translateX(100%);
  321. transition: 0.3s;
  322. }
  323. &.none {
  324. display: none;
  325. }
  326. &.show {
  327. background: rgba(0, 0, 0, 0.4);
  328. .cate-content {
  329. transform: translateX(0);
  330. }
  331. }
  332. }
  333. .cate-list {
  334. display: flex;
  335. flex-direction: column;
  336. height: 100%;
  337. .cate-item {
  338. display: flex;
  339. align-items: center;
  340. height: 90rpx;
  341. padding-left: 30rpx;
  342. font-size: 28rpx;
  343. color: #555;
  344. position: relative;
  345. }
  346. .two {
  347. height: 64rpx;
  348. color: #303133;
  349. font-size: 30rpx;
  350. background: #f8f8f8;
  351. }
  352. .active {
  353. color: $base-color;
  354. }
  355. }
  356. /* 商品列表 */
  357. .goods-list {
  358. display: flex;
  359. flex-wrap: wrap;
  360. padding: 0 30rpx;
  361. background: #fff;
  362. .goods-item {
  363. display: flex;
  364. flex-direction: column;
  365. width: 48%;
  366. padding-bottom: 40rpx;
  367. &:nth-child(2n + 1) {
  368. margin-right: 4%;
  369. }
  370. }
  371. .image-wrapper {
  372. width: 100%;
  373. height: 330rpx;
  374. border-radius: 3px;
  375. overflow: hidden;
  376. image {
  377. width: 100%;
  378. height: 100%;
  379. opacity: 1;
  380. }
  381. }
  382. .title {
  383. font-size: $font-lg;
  384. color: $font-color-dark;
  385. line-height: 80rpx;
  386. }
  387. .price-box {
  388. display: flex;
  389. align-items: center;
  390. justify-content: space-between;
  391. padding-right: 10rpx;
  392. font-size: 24rpx;
  393. color: $font-color-light;
  394. }
  395. .price {
  396. font-size: $font-lg;
  397. color: $uni-color-primary;
  398. line-height: 1;
  399. &:before {
  400. content: '¥';
  401. font-size: 26rpx;
  402. }
  403. }
  404. }
  405. </style>