算法对比:左册导航跟右侧滚动联动

This commit is contained in:
guoyue 2022-06-27 14:47:23 +08:00
parent 1410884d61
commit 5005bf2f06
1 changed files with 33 additions and 39 deletions

View File

@ -31,7 +31,7 @@
</span> </span>
</div> </div>
</div> </div>
<div class="bottom" ref="bottomRef"> <div class="bottom bottomRef" ref="bottomRef" @scroll="(event) => scrollAction(event)">
<div class="bottom-item" v-for="(data, i) in tableData" :key="i"> <div class="bottom-item" v-for="(data, i) in tableData" :key="i">
<div class="title" :title="data.title" :ref="data.title">{{ data.title }}</div> <div class="title" :title="data.title" :ref="data.title">{{ data.title }}</div>
<!-- 算法优势 --> <!-- 算法优势 -->
@ -101,12 +101,10 @@ import { pageWithAttrs } from '@/api/abilityStatistics'
import { defineComponent, ref, onMounted, getCurrentInstance, computed, unref, reactive, nextTick } from 'vue'; import { defineComponent, ref, onMounted, getCurrentInstance, computed, unref, reactive, nextTick } from 'vue';
import { selectOne } from '@/api/home' import { selectOne } from '@/api/home'
import { message, Tooltip, Table, Spin } from 'ant-design-vue' import { message, Tooltip, Table, Spin } from 'ant-design-vue'
import { useRouter } from 'vue-router' import { useRouter } from 'vue-router';
const router = useRouter() const router = useRouter()
let queryId = router.currentRoute.value.query.id; let queryId = router.currentRoute.value.query.id;
console.log('111---->', router)
const ctx = getCurrentInstance(); const ctx = getCurrentInstance();
// 4 // 4
@ -277,31 +275,16 @@ onMounted(() => {
getList().then(res => { getList().then(res => {
initData() initData()
}) })
//
window.addEventListener('scroll', handleScroll, true)
})
})
let navScrollTopArray = ref([])
//
const getNavscrollTop = () => {
navScrollTopArray = ref([])
leftNav.value.map((title, index) => {
let realTop = ctx.refs[title][0].offsetTop;
navScrollTopArray.value.push({
scrollTop: realTop - 240,
index: index
}) })
}) })
}
// //
const handleScroll = () => { const scrollAction = (event) => {
isScrollFlag.value = true; isScrollFlag.value = true;
if(isScrollFlag.value) { if (!isScrollFlag.value) {
let _scrollTop = ctx.refs.bottomRef && ctx.refs.bottomRef.scrollTop; rrturn
}
const _scrollTop = event.target.scrollTop
nextTick(() => { nextTick(() => {
let len = navScrollTopArray.value.length; let len = navScrollTopArray.value.length;
let min = navScrollTopArray.value[1].scrollTop let min = navScrollTopArray.value[1].scrollTop
@ -309,7 +292,7 @@ const handleScroll = () => {
for (let index = 0; index < navScrollTopArray.value.length; index++) { for (let index = 0; index < navScrollTopArray.value.length; index++) {
const item = navScrollTopArray.value[index]; const item = navScrollTopArray.value[index];
if (index < len - 1) { if (index < len - 1) {
if (_scrollTop > item.scrollTop && _scrollTop < navScrollTopArray.value[index + 1].scrollTop) { if (_scrollTop > item.scrollTop && _scrollTop <= navScrollTopArray.value[index + 1].scrollTop) {
activeNameIndex.value = index + 1; activeNameIndex.value = index + 1;
break; break;
} }
@ -325,6 +308,18 @@ const handleScroll = () => {
} }
}) })
} }
let navScrollTopArray = ref([])
//
const getNavscrollTop = () => {
navScrollTopArray = ref([])
leftNav.value.map((title, index) => {
let realTop = ctx.refs[title][0].offsetTop;
navScrollTopArray.value.push({
scrollTop: realTop - 240,
index: index
})
})
} }
let isScrollFlag = ref(false) let isScrollFlag = ref(false)
@ -334,7 +329,6 @@ const changeTab = (n, data) => {
activeNameIndex.value = n; activeNameIndex.value = n;
// //
let realTop = ctx.refs[data][0].offsetTop; let realTop = ctx.refs[data][0].offsetTop;
console.log('realTop------------>', realTop);
if (realTop || realTop === 0) { if (realTop || realTop === 0) {
ctx.refs.bottomRef.scrollTo({ ctx.refs.bottomRef.scrollTo({
'top': realTop - 240, 'top': realTop - 240,