Merge pull request '标签无数据提示问题' (#141) from caishi/forgeplus-react:pre_develop_dev into pre_develop_dev

This commit is contained in:
jasder 2021-10-12 10:55:47 +08:00
commit 8cb0e32afa
1 changed files with 14 additions and 13 deletions

View File

@ -11,7 +11,7 @@ import moment from 'moment';
function Tags(props) {
const [ source , setSource ] = useState([]);
const [ source , setSource ] = useState(undefined);
const [ isSpin , setIsSpin ] = useState(true);
const { projectsId , owner } = props.match.params;
@ -99,18 +99,19 @@ function Tags(props) {
return(
<div>
<SubMenu tab={"tags"} projectsId={projectsId} owner={owner}/>
{
source && source.length > 0 ?
<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>
:
<Nonedata _html={'暂无数据~'}/>
}
</div>
)
}