代码库二级页面标签加载优化

This commit is contained in:
hucong 2021-10-12 11:49:04 +08:00
parent 0a81bc6e6e
commit 112aacb6a1
1 changed files with 13 additions and 14 deletions

View File

@ -11,7 +11,7 @@ import moment from 'moment';
function Tags(props) {
const [ source , setSource ] = useState(undefined);
const [ source , setSource ] = useState([]);
const [ isSpin , setIsSpin ] = useState(true);
const { projectsId , owner } = props.match.params;
@ -104,19 +104,18 @@ function Tags(props) {
return(
<div>
<SubMenu tab={"tags"} projectsId={projectsId} owner={owner}/>
<div className="tagSpin">
<Spin spinning={isSpin}>
{
source && source.length > 0 &&
<Table
className="tagTable"
dataSource={source} columns={columns} pagination={false}></Table>
}
{
source && source.length === 0 && <Nonedata _html={'暂无数据~'}/>
}
</Spin>
</div>
{
source && source.length > 0 ?
<div className="tagSpin">
<Spin spinning={isSpin}>
<Table
className="tagTable"
dataSource={source} columns={columns} pagination={false}></Table>
</Spin>
</div>
:
<Nonedata _html={'暂无数据~'}/>
}
</div>
)
}