issue-优化

This commit is contained in:
caishi 2021-11-29 10:55:50 +08:00
parent 3eaf1dc214
commit 07511efbd6
2 changed files with 11 additions and 5 deletions

View File

@ -167,8 +167,8 @@ class MergeForm extends Component {
this.setState({
isSpin: false,
});
const { pull_request_id } = result.data;
this.props.history.push(`/${owner}/${projectsId}/pulls/${pull_request_id}`);
const { pull_request_number } = result.data;
this.props.history.push(`/${owner}/${projectsId}/pulls/${pull_request_number}`);
const { getDetail } = this.props;
getDetail && getDetail();
} else {

View File

@ -9,6 +9,7 @@ import Pie from '../Echart/Pie';
import Cloud from '../Echart/Cloud';
import Radar from '../Echart/Radar';
import Round from '../Echart/Round';
import Nodata from '../../Nodata';
import { DatePicker } from 'antd';
import moment from 'moment';
@ -120,7 +121,7 @@ function Index(props) {
}
}).then(result=>{
if(result && result.data){
setCloudData(result.data);
setCloudData({categories:[]});
}
}).catch(error=>{})
}
@ -148,7 +149,7 @@ function Index(props) {
</div>
}
{
percentData &&
percentData && percentData.length >0 &&
<div className="pBox">
<div className="progress">
{
@ -200,7 +201,12 @@ function Index(props) {
</FlexAJ>
<div className="echartBox">
<p>展示你擅长关注感兴趣的专业范围通过你参与项目收藏项目关注项目复刻项目等数据来统计</p>
<Cloud data={cloudData}/>
{
cloudData && cloudData.length >0?
<Cloud data={cloudData}/>
:
<Nodata _html="暂无数据" small={true}/>
}
</div>
</div>
</div>