mirror of
https://github.com/YMFE/yapi.git
synced 2025-01-06 12:45:22 +08:00
fix: 无分组的时候停止loading状态
This commit is contained in:
parent
9916ecbd7e
commit
56cb36a1ed
@ -206,6 +206,7 @@ class ProjectList extends Component {
|
|||||||
componentWillReceiveProps(nextProps) {
|
componentWillReceiveProps(nextProps) {
|
||||||
// 切换分组
|
// 切换分组
|
||||||
if (this.props.currGroup !== nextProps.currGroup) {
|
if (this.props.currGroup !== nextProps.currGroup) {
|
||||||
|
if (nextProps.currGroup._id) {
|
||||||
this.props.fetchProjectList(nextProps.currGroup._id, this.props.currPage).then((res) => {
|
this.props.fetchProjectList(nextProps.currGroup._id, this.props.currPage).then((res) => {
|
||||||
if (res.payload.data.errcode) {
|
if (res.payload.data.errcode) {
|
||||||
message.error(res.payload.data.errmsg);
|
message.error(res.payload.data.errmsg);
|
||||||
@ -213,6 +214,10 @@ class ProjectList extends Component {
|
|||||||
this.props.changeTableLoading(false);
|
this.props.changeTableLoading(false);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
} else {
|
||||||
|
// 无分组的时候停止loading状态
|
||||||
|
this.props.changeTableLoading(false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 切换项目列表
|
// 切换项目列表
|
||||||
|
Loading…
Reference in New Issue
Block a user