工具分类为空

This commit is contained in:
黄心宇 2026-01-16 11:44:23 +08:00
parent ad135512b7
commit eadd9d91b2
2 changed files with 8 additions and 0 deletions

View File

@ -17,6 +17,7 @@ import '../../common.scss'
import { downloadFunc } from '../../../forge/Utils/utils'
import { Link } from "react-router-dom";
import InfiniteScroll from 'react-infinite-scroller';
import Nodata from '../../../forge/Nodata'
const bgList = [bg1, bg2, bg3]
@ -218,6 +219,7 @@ function Index(props) {
</ActionItem>
})
}
{contentList && !contentList.length && <div className="mt100 mlauto mrauto"><Nodata _html="暂无数据"/></div>}
</div>
</div>
<div className="tools-content-new">

View File

@ -484,4 +484,10 @@
justify-content: center;
}
}
.mlauto{
margin-left: auto;
}
.mrauto {
margin-right: auto;
}
}