Merge pull request 'main' (#39) from main into space_domain
Reviewed-on: https://git.wishpal.cn/wishpal_ironfan/tiefen_space_h5/pulls/39
This commit is contained in:
commit
b67adf072f
|
@ -51,6 +51,7 @@ export default function Space() {
|
||||||
}, []);
|
}, []);
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
firstRequest();
|
firstRequest();
|
||||||
|
setDataList([]);
|
||||||
}, [activeIndex]);
|
}, [activeIndex]);
|
||||||
const firstRequest = () => {
|
const firstRequest = () => {
|
||||||
resetOffset();
|
resetOffset();
|
||||||
|
@ -65,7 +66,6 @@ export default function Space() {
|
||||||
};
|
};
|
||||||
const resetOffset = () => {
|
const resetOffset = () => {
|
||||||
setOffset(0);
|
setOffset(0);
|
||||||
// setDataList([]);
|
|
||||||
};
|
};
|
||||||
const getSpaceList = async () => {
|
const getSpaceList = async () => {
|
||||||
// setLoading(true);
|
// setLoading(true);
|
||||||
|
@ -136,7 +136,7 @@ export default function Space() {
|
||||||
onChange={(key) => {
|
onChange={(key) => {
|
||||||
const index = tabItems.findIndex((item) => item.key === key);
|
const index = tabItems.findIndex((item) => item.key === key);
|
||||||
setActiveIndex(index);
|
setActiveIndex(index);
|
||||||
// swiperRef.current?.swipeTo(index);
|
swiperRef.current?.swipeTo(index);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{tabItems.map((item) => (
|
{tabItems.map((item) => (
|
||||||
|
@ -155,17 +155,18 @@ export default function Space() {
|
||||||
<OwnIcon src="/icons/search.png" className="w-9 h-9" />
|
<OwnIcon src="/icons/search.png" className="w-9 h-9" />
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
|
{}
|
||||||
<Swiper
|
<Swiper
|
||||||
direction="horizontal"
|
direction="horizontal"
|
||||||
indicator={() => null}
|
indicator={() => null}
|
||||||
// ref={swiperRef}
|
ref={swiperRef}
|
||||||
defaultIndex={activeIndex}
|
defaultIndex={activeIndex}
|
||||||
|
allowTouchMove={false}
|
||||||
onIndexChange={(index) => {
|
onIndexChange={(index) => {
|
||||||
setActiveIndex(index);
|
setActiveIndex(index);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Swiper.Item>
|
<Swiper.Item>
|
||||||
{!activeIndex && (
|
|
||||||
<div>
|
<div>
|
||||||
{!loading ? (
|
{!loading ? (
|
||||||
// <div className="px-4 pb-8">
|
// <div className="px-4 pb-8">
|
||||||
|
@ -249,10 +250,8 @@ export default function Space() {
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
)}
|
|
||||||
</Swiper.Item>
|
</Swiper.Item>
|
||||||
<Swiper.Item>
|
<Swiper.Item>
|
||||||
{!!activeIndex && (
|
|
||||||
<div className="px-4 pb-20">
|
<div className="px-4 pb-20">
|
||||||
<List className="scrollbarBox_hidden">
|
<List className="scrollbarBox_hidden">
|
||||||
{loading && !dataList.length && (
|
{loading && !dataList.length && (
|
||||||
|
@ -289,7 +288,6 @@ export default function Space() {
|
||||||
</div>
|
</div>
|
||||||
)} */}
|
)} */}
|
||||||
</div>
|
</div>
|
||||||
)}
|
|
||||||
</Swiper.Item>
|
</Swiper.Item>
|
||||||
</Swiper>
|
</Swiper>
|
||||||
<div
|
<div
|
||||||
|
|
Loading…
Reference in New Issue