修改bug

This commit is contained in:
A1300399510
2023-07-27 16:25:10 +08:00
parent a5e6ebc76f
commit 67c90001e0
5 changed files with 51 additions and 16 deletions

View File

@@ -35,10 +35,14 @@ import circleBtn from '@/components/public/circle-btn.vue'
import { ref, onMounted, onUnmounted, watch, getCurrentInstance, nextTick } from 'vue';
import { ElLoading } from 'element-plus'
import Masonry from 'masonry-layout';
import { useRoute, useRouter } from 'vue-router';
const { proxy } = getCurrentInstance()
const route = useRoute()
const props = defineProps({
item: Object,
});
@@ -57,7 +61,10 @@ onMounted(() => {
gutter: 20
});
if (route.query['companyid']) pitchValue['companyid'] = route.query['companyid']
getData()
window.addEventListener('scroll', handleScroll);
});