forked from Gitlink/forgeplus-react
代码库二级页面标签加载优化
This commit is contained in:
parent
0a81bc6e6e
commit
112aacb6a1
|
@ -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>
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue