category.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <template>
  2. <view class="content">
  3. <scroll-view scroll-y class="left-aside">
  4. <view v-for="item in flist" :key="item.id" class="f-item b-b" :class="{ active: item.id === currentId }" @click="tabtap(item)">{{ item.cate_name }}</view>
  5. </scroll-view>
  6. <scroll-view scroll-with-animation scroll-y class="right-aside" @scroll="asideScroll" :scroll-top="tabScrollTop">
  7. <view v-for="item in flist" :key="item.id" class="s-list" :id="'main-' + item.id">
  8. <text class="s-item">{{ item.cate_name }}</text>
  9. <view class="t-list ">
  10. <view @click="navToList(item.id, titem.id)" class="t-item" v-for="titem in item.children" :key="titem.id">
  11. <image :src="titem.pic"></image>
  12. <text>{{ titem.cate_name }}</text>
  13. </view>
  14. </view>
  15. </view>
  16. </scroll-view>
  17. </view>
  18. </template>
  19. <script>
  20. import { getCategoryList } from '@/api/product.js';
  21. export default {
  22. data() {
  23. return {
  24. sizeCalcState: false,
  25. tabScrollTop: 0,
  26. currentId: 1,
  27. flist: [],
  28. };
  29. },
  30. onLoad() {
  31. this.loadData();
  32. },
  33. // 监听导航栏输入框点击事件
  34. onNavigationBarSearchInputClicked(e) {
  35. uni.navigateTo({
  36. url: '/pages/product/search'
  37. });
  38. },
  39. methods: {
  40. // 载入数据
  41. async loadData() {
  42. let obj = this;
  43. getCategoryList({})
  44. .then(({ data }) => {
  45. obj.flist = data.map(function(s) {
  46. return s;
  47. });
  48. })
  49. .catch(err => {
  50. console.log(err);
  51. });
  52. },
  53. //一级分类点击
  54. tabtap(item) {
  55. console.log(item);
  56. // 判断有没有初始化页面高度对象数据
  57. if (!this.sizeCalcState) {
  58. this.calcSize();
  59. }
  60. // 获取当前点击的id
  61. this.currentId = item.id;
  62. this.tabScrollTop = item.top;
  63. },
  64. //右侧栏滚动
  65. asideScroll(e) {
  66. // 判断有没有初始化页面高度对象数据
  67. if (!this.sizeCalcState) {
  68. this.calcSize();
  69. }
  70. let scrollTop = e.detail.scrollTop;
  71. let box = 0; //列表包裹框高度初始化
  72. let bottom = 10; //距离页面底部多少像素左侧列表切换到最后一个一级分类
  73. // 查询当前页面对象
  74. let view = uni.createSelectorQuery().select('.content');
  75. view.fields(
  76. {
  77. id: true,
  78. dataset: true,
  79. rect: true,
  80. size: true,
  81. scrollOffset: true
  82. },
  83. function(e) {
  84. // 保存包裹框高度
  85. box = e.height;
  86. }
  87. ).exec();
  88. // 获取所有距离顶部大于滚轮距离页面高度的所有分类
  89. let tabs = this.flist.filter(item =>( item.top-10) <= scrollTop).reverse();
  90. if (tabs.length > 0) {
  91. // 判断是否已经到达滚轮底部
  92. if (box + scrollTop + bottom >= e.detail.scrollHeight) {
  93. this.currentId = this.flist[this.flist.length - 1].id;
  94. } else {
  95. this.currentId = tabs[0].id;
  96. }
  97. }
  98. },
  99. //计算右侧栏每个tab的高度等信息
  100. calcSize() {
  101. let h = 0;
  102. this.flist.forEach(item => {
  103. let view = uni.createSelectorQuery().select('#main-' + item.id);
  104. view.fields(
  105. {
  106. size: true
  107. },
  108. data => {
  109. item.top = h;
  110. h += data.height;
  111. item.bottom = h;
  112. }
  113. ).exec();
  114. });
  115. this.sizeCalcState = true;
  116. },
  117. navToList(sid, tid) {
  118. // 点击导航跳转到详细页面
  119. uni.navigateTo({
  120. url: '/pages/product/list?fid='+this.currentId+'&sid='+sid+'&tid='+tid
  121. });
  122. }
  123. }
  124. };
  125. </script>
  126. <style lang="scss">
  127. page,
  128. .content {
  129. height: 100%;
  130. background-color: #f8f8f8;
  131. }
  132. .content {
  133. display: flex;
  134. }
  135. .left-aside {
  136. flex-shrink: 0;
  137. width: 200rpx;
  138. height: 100%;
  139. background-color: #fff;
  140. }
  141. .f-item {
  142. display: flex;
  143. align-items: center;
  144. justify-content: center;
  145. width: 100%;
  146. height: 100rpx;
  147. font-size: 28rpx;
  148. color: $font-color-base;
  149. position: relative;
  150. &.active {
  151. color: $base-color;
  152. background: #f8f8f8;
  153. &:before {
  154. content: '';
  155. position: absolute;
  156. left: 0;
  157. top: 50%;
  158. transform: translateY(-50%);
  159. height: 36rpx;
  160. width: 8rpx;
  161. background-color: $base-color;
  162. border-radius: 0 4px 4px 0;
  163. opacity: 0.8;
  164. }
  165. }
  166. }
  167. .right-aside {
  168. flex: 1;
  169. overflow: hidden;
  170. padding-left: 20rpx;
  171. padding-right: 20rpx;
  172. }
  173. .s-item {
  174. display: flex;
  175. align-items: center;
  176. height: 70rpx;
  177. padding-top: 8rpx;
  178. font-size: 28rpx;
  179. color: $font-color-dark;
  180. }
  181. .t-list {
  182. display: flex;
  183. flex-wrap: wrap;
  184. border-radius: 15rpx;
  185. width: 100%;
  186. background: #fff;
  187. padding-top: 12rpx;
  188. &:after {
  189. content: '';
  190. flex: 99;
  191. height: 0;
  192. }
  193. }
  194. .t-item {
  195. flex-shrink: 0;
  196. display: flex;
  197. justify-content: center;
  198. align-items: center;
  199. flex-direction: column;
  200. width: 171rpx;
  201. font-size: 26rpx;
  202. color: #666;
  203. padding-bottom: 20rpx;
  204. image {
  205. width: 140rpx;
  206. height: 140rpx;
  207. }
  208. }
  209. </style>