zhSlidingMenu.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  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]' :language='language'></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. language: ''
  108. }
  109. },
  110. mounted() {
  111. if (uni.getStorageSync('language')) {
  112. this.language = uni.getStorageSync('language')
  113. }
  114. this.getMenuItemTop()
  115. },
  116. methods: {
  117. // 点击左边的栏目切换
  118. async swichMenu(index) {
  119. if (this.arr.length == 0) {
  120. await this.getMenuItemTop();
  121. }
  122. if (index == this.current) return;
  123. this.scrollRightTop = this.oldScrollTop;
  124. this.$nextTick(() => {
  125. this.scrollRightTop = this.arr[index];
  126. this.current = index;
  127. this.leftMenuStatus(index);
  128. })
  129. },
  130. // 获取一个目标元素的高度
  131. getElRect(elClass, dataVal) {
  132. new Promise((resolve, reject) => {
  133. const query = uni.createSelectorQuery().in(this);
  134. query.select('.' + elClass).fields({
  135. size: true
  136. }, res => {
  137. // 如果节点尚未生成,res值为null,循环调用执行
  138. if (!res) {
  139. setTimeout(() => {
  140. this.getElRect(elClass);
  141. }, 10);
  142. return;
  143. }
  144. this[dataVal] = res.height;
  145. resolve();
  146. }).exec();
  147. })
  148. },
  149. // 观测元素相交状态
  150. async observer() {
  151. this.tabbar.map((val, index) => {
  152. let observer = uni.createIntersectionObserver(this);
  153. // 检测右边scroll-view的id为itemxx的元素与right-box的相交状态
  154. // 如果跟.right-box底部相交,就动态设置左边栏目的活动状态
  155. observer.relativeTo('.right-box', {
  156. top: 0
  157. }).observe('#item' + index, res => {
  158. if (res.intersectionRatio > 0) {
  159. let id = res.id.substring(4);
  160. this.leftMenuStatus(id);
  161. }
  162. })
  163. })
  164. },
  165. // 设置左边菜单的滚动状态
  166. async leftMenuStatus(index) {
  167. this.current = index;
  168. // 如果为0,意味着尚未初始化
  169. if (this.menuHeight == 0 || this.menuItemHeight == 0) {
  170. await this.getElRect('menu-scroll-view', 'menuHeight');
  171. await this.getElRect('menu_item', 'menuItemHeight');
  172. }
  173. // 将菜单活动item垂直居中
  174. this.scrollTop = index * this.menuItemHeight + this.menuItemHeight / 2 - this.menuHeight / 2;
  175. },
  176. // 获取右边菜单每个item到顶部的距离
  177. getMenuItemTop() {
  178. new Promise(resolve => {
  179. let selectorQuery = uni.createSelectorQuery().in(this);
  180. selectorQuery.selectAll('.menu_right_item').boundingClientRect((rects) => {
  181. // 如果节点尚未生成,rects值为[](因为用selectAll,所以返回的是数组),循环调用执行
  182. if (!rects.length) {
  183. setTimeout(() => {
  184. this.getMenuItemTop();
  185. }, 10);
  186. return;
  187. }
  188. rects.forEach((rect) => {
  189. // 这里减去rects[0].top,是因为第一项顶部可能不是贴到导航栏(比如有个搜索框的情况)
  190. this.arr.push(rect.top - rects[0].top);
  191. resolve();
  192. })
  193. }).exec()
  194. })
  195. },
  196. // 右边菜单滚动
  197. async rightScroll(e) {
  198. this.oldScrollTop = e.detail.scrollTop;
  199. if (this.arr.length == 0) {
  200. await this.getMenuItemTop();
  201. }
  202. if (this.timer) return;
  203. if (!this.menuHeight) {
  204. await this.getElRect('menu-scroll-view', 'menuHeight');
  205. }
  206. setTimeout(() => { // 节流
  207. this.timer = null;
  208. // scrollHeight为右边菜单垂直中点位置
  209. let scrollHeight = e.detail.scrollTop;
  210. for (let i = 0; i < this.arr.length; i++) {
  211. let height1 = this.arr[i];
  212. let height2 = this.arr[i + 1];
  213. // 如果不存在height2,意味着数据循环已经到了最后一个,设置左边菜单为最后一项即可
  214. if (!height2 || scrollHeight >= height1 && scrollHeight < height2) {
  215. this.leftMenuStatus(i);
  216. return;
  217. }
  218. }
  219. }, 10)
  220. },
  221. reset() { //父级重置
  222. this.$nextTick(async () => {
  223. await this.getMenuItemTop();
  224. this.current = 0
  225. this.scrollTop = 0
  226. this.scrollRightTop = 0
  227. })
  228. }
  229. }
  230. }
  231. </script>
  232. <style lang="scss" scoped>
  233. .content {
  234. display: flex;
  235. flex-direction: column;
  236. .cont {
  237. flex: 1;
  238. display: flex;
  239. overflow: hidden;
  240. .cont_view {
  241. height: 100%;
  242. .menu_item {
  243. position: relative;
  244. padding: 24rpx 12rpx;
  245. .menu_item_name {
  246. display: -webkit-box;
  247. -webkit-box-orient: vertical;
  248. -webkit-line-clamp: 1;
  249. overflow: hidden;
  250. text-align: center;
  251. }
  252. .y_teg {
  253. width: 6upx;
  254. height: 40upx;
  255. border-radius: 3upx;
  256. position: absolute;
  257. left: 0%;
  258. top: 50%;
  259. z-index: 99;
  260. transform: translate(0, -50%);
  261. }
  262. }
  263. }
  264. }
  265. }
  266. .menu_right_view {
  267. padding: 24upx;
  268. .menu_right_item {
  269. margin-bottom: 30rpx;
  270. }
  271. .menu_right_item:last-child {
  272. min-height: 100vh;
  273. }
  274. }
  275. .menu_right_title {
  276. font-family: PingFangSC, PingFang SC;
  277. font-size: 28rpx;
  278. color: #222222;
  279. font-weight: bold;
  280. font-size: 28rpx;
  281. display: -webkit-box;
  282. -webkit-box-orient: vertical;
  283. -webkit-line-clamp: 1;
  284. overflow: hidden;
  285. }
  286. </style>