zhSlidingMenu.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. <template>
  2. <view class="content" :style="{'height': `${scrollH}px`}">
  3. <view class="cont">
  4. <scroll-view scroll-y scroll-with-animation class="cont_view menu-scroll-view" :scroll-top="scrollTop"
  5. :scroll-into-view="itemId" :style="[menuLeft]">
  6. <view v-for="(item,index) in tabbar" :key="index" class="menu_item"
  7. :style="[menuLeftActive,current == index?menuLeftActivea:{}]" @tap.stop="swichMenu(index)">
  8. <view class="menu_item_name">{{item[keyName]}}</view>
  9. <view class="y_teg" :style="[{'background':tegColor}]" v-if="current == index && isTeg"></view>
  10. </view>
  11. </scroll-view>
  12. <scroll-view :scroll-top="scrollRightTop" scroll-y scroll-with-animation :style="[menuRight]"
  13. @scroll="rightScroll">
  14. <view class="menu_right_view">
  15. <view class="menu_right_item" :id="'item' + index" v-for="(item , index) in tabbar" :key="index">
  16. <view class="menu_right_title">{{item[keyName]}}</view>
  17. <view class="">
  18. <slot :scroll_list='item[tabbarName]'></slot>
  19. </view>
  20. </view>
  21. </view>
  22. </scroll-view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. /*
  28. * zhSlidingMenu 分类商品-单向联动 + 双向联动,支持自定义商品内容
  29. * @property {Array} tabbar 分类数据
  30. * @property {String} keyName 从tabbar元素对象中读取的键名
  31. * @property {Number} scrollH scroll高度
  32. * @property {Object} menuLeft 左侧样式
  33. * @property {Object} menuLeftActive 左侧未选中样式
  34. * @property {Object} menuLeftActivea 左侧选中样式
  35. * @property {Object} menuRight 右侧样式
  36. * @property {Object} tabbarName tabbar数组中指定对象的目标属性名
  37. * @property {Boolean} isTeg 左侧竖条标记
  38. * @property {String} tegColor 左侧竖条标记颜色
  39. */
  40. export default {
  41. props: {
  42. tabbar: {
  43. typeof: Array,
  44. default: () => []
  45. },
  46. keyName: {
  47. typeof: String,
  48. default: () => 'name'
  49. },
  50. scrollH: {
  51. typeof: Number,
  52. default: () => 500
  53. },
  54. menuLeft: {
  55. typeof: Object,
  56. default: () => ({
  57. 'width': '200rpx',
  58. 'background': '#F5F5F5',
  59. })
  60. },
  61. menuLeftActive: {
  62. typeof: Object,
  63. default: () => ({
  64. 'color': '#333333',
  65. 'font-weight': '400',
  66. 'font-size': '30rpx',
  67. })
  68. },
  69. menuLeftActivea: {
  70. typeof: Object,
  71. default: () => ({
  72. 'color': '#222222',
  73. 'font-weight': '500',
  74. 'background': '#fff',
  75. })
  76. },
  77. menuRight: {
  78. typeof: Object,
  79. default: () => ({
  80. background: '#fff',
  81. })
  82. },
  83. tabbarName: {
  84. typeof: String,
  85. default: () => 'children'
  86. },
  87. isTeg: {
  88. typeof: Boolean,
  89. default: () => true
  90. },
  91. tegColor: {
  92. typeof: String,
  93. default: () => 'rgba(255, 21, 21, 1)'
  94. }
  95. },
  96. data() {
  97. return {
  98. scrollTop: 0, //tab标题的滚动条位置
  99. oldScrollTop: 0,
  100. current: 0, // 预设当前项的值
  101. menuHeight: 0, // 左边菜单的高度
  102. menuItemHeight: 0, // 左边菜单item的高度
  103. itemId: '', // 栏目右边scroll-view用于滚动的id
  104. arr: [], //左侧菜单距离登录距离列表
  105. scrollRightTop: 0, // 右边栏目scroll-view的滚动条高度
  106. timer: null, // 定时器
  107. }
  108. },
  109. mounted() {
  110. this.getMenuItemTop()
  111. },
  112. methods: {
  113. // 点击左边的栏目切换
  114. async swichMenu(index) {
  115. if (this.arr.length == 0) {
  116. await this.getMenuItemTop();
  117. }
  118. if (index == this.current) return;
  119. this.scrollRightTop = this.oldScrollTop;
  120. this.$nextTick(() => {
  121. this.scrollRightTop = this.arr[index];
  122. this.current = index;
  123. this.leftMenuStatus(index);
  124. })
  125. },
  126. // 获取一个目标元素的高度
  127. getElRect(elClass, dataVal) {
  128. new Promise((resolve, reject) => {
  129. const query = uni.createSelectorQuery().in(this);
  130. query.select('.' + elClass).fields({
  131. size: true
  132. }, res => {
  133. // 如果节点尚未生成,res值为null,循环调用执行
  134. if (!res) {
  135. setTimeout(() => {
  136. this.getElRect(elClass);
  137. }, 10);
  138. return;
  139. }
  140. this[dataVal] = res.height;
  141. resolve();
  142. }).exec();
  143. })
  144. },
  145. // 观测元素相交状态
  146. async observer() {
  147. this.tabbar.map((val, index) => {
  148. let observer = uni.createIntersectionObserver(this);
  149. // 检测右边scroll-view的id为itemxx的元素与right-box的相交状态
  150. // 如果跟.right-box底部相交,就动态设置左边栏目的活动状态
  151. observer.relativeTo('.right-box', {
  152. top: 0
  153. }).observe('#item' + index, res => {
  154. if (res.intersectionRatio > 0) {
  155. let id = res.id.substring(4);
  156. this.leftMenuStatus(id);
  157. }
  158. })
  159. })
  160. },
  161. // 设置左边菜单的滚动状态
  162. async leftMenuStatus(index) {
  163. this.current = index;
  164. // 如果为0,意味着尚未初始化
  165. if (this.menuHeight == 0 || this.menuItemHeight == 0) {
  166. await this.getElRect('menu-scroll-view', 'menuHeight');
  167. await this.getElRect('menu_item', 'menuItemHeight');
  168. }
  169. // 将菜单活动item垂直居中
  170. this.scrollTop = index * this.menuItemHeight + this.menuItemHeight / 2 - this.menuHeight / 2;
  171. },
  172. // 获取右边菜单每个item到顶部的距离
  173. getMenuItemTop() {
  174. new Promise(resolve => {
  175. let selectorQuery = uni.createSelectorQuery().in(this);
  176. selectorQuery.selectAll('.menu_right_item').boundingClientRect((rects) => {
  177. // 如果节点尚未生成,rects值为[](因为用selectAll,所以返回的是数组),循环调用执行
  178. if (!rects.length) {
  179. setTimeout(() => {
  180. this.getMenuItemTop();
  181. }, 10);
  182. return;
  183. }
  184. rects.forEach((rect) => {
  185. // 这里减去rects[0].top,是因为第一项顶部可能不是贴到导航栏(比如有个搜索框的情况)
  186. this.arr.push(rect.top - rects[0].top);
  187. resolve();
  188. })
  189. }).exec()
  190. })
  191. },
  192. // 右边菜单滚动
  193. async rightScroll(e) {
  194. this.oldScrollTop = e.detail.scrollTop;
  195. if (this.arr.length == 0) {
  196. await this.getMenuItemTop();
  197. }
  198. if (this.timer) return;
  199. if (!this.menuHeight) {
  200. await this.getElRect('menu-scroll-view', 'menuHeight');
  201. }
  202. setTimeout(() => { // 节流
  203. this.timer = null;
  204. // scrollHeight为右边菜单垂直中点位置
  205. let scrollHeight = e.detail.scrollTop;
  206. for (let i = 0; i < this.arr.length; i++) {
  207. let height1 = this.arr[i];
  208. let height2 = this.arr[i + 1];
  209. // 如果不存在height2,意味着数据循环已经到了最后一个,设置左边菜单为最后一项即可
  210. if (!height2 || scrollHeight >= height1 && scrollHeight < height2) {
  211. this.leftMenuStatus(i);
  212. return;
  213. }
  214. }
  215. }, 10)
  216. },
  217. reset() { //父级重置
  218. this.$nextTick(async () => {
  219. await this.getMenuItemTop();
  220. this.current = 0
  221. this.scrollTop = 0
  222. this.scrollRightTop = 0
  223. })
  224. }
  225. }
  226. }
  227. </script>
  228. <style lang="scss" scoped>
  229. .content {
  230. display: flex;
  231. flex-direction: column;
  232. .cont {
  233. flex: 1;
  234. display: flex;
  235. overflow: hidden;
  236. .cont_view {
  237. height: 100%;
  238. .menu_item {
  239. position: relative;
  240. padding: 24rpx 12rpx;
  241. .menu_item_name {
  242. display: -webkit-box;
  243. -webkit-box-orient: vertical;
  244. -webkit-line-clamp: 1;
  245. overflow: hidden;
  246. text-align: center;
  247. }
  248. .y_teg {
  249. width: 6upx;
  250. height: 40upx;
  251. border-radius: 3upx;
  252. position: absolute;
  253. left: 0%;
  254. top: 50%;
  255. z-index: 99;
  256. transform: translate(0, -50%);
  257. }
  258. }
  259. }
  260. }
  261. }
  262. .menu_right_view {
  263. padding: 24upx;
  264. .menu_right_item {
  265. margin-bottom: 30rpx;
  266. }
  267. .menu_right_item:last-child {
  268. min-height: 100vh;
  269. }
  270. }
  271. .menu_right_title {
  272. font-family: PingFangSC, PingFang SC;
  273. font-size: 28rpx;
  274. color: #222222;
  275. font-weight: bold;
  276. font-size: 28rpx;
  277. display: -webkit-box;
  278. -webkit-box-orient: vertical;
  279. -webkit-line-clamp: 1;
  280. overflow: hidden;
  281. }
  282. </style>