Merge branches 'dev_newysm' and 'develop' of https://bdgit.educoder.net/Hjqreturn/educoder into dev_newysm

chromesetting
杨树明 5 years ago
commit 02dbe6a4ce

@ -311,7 +311,9 @@ class TPMDataset extends Component {
//done 成功就会调用这个方法 //done 成功就会调用这个方法
if(info.file.response){ if(info.file.response){
if(info.file.response.status===-1||info.file.response.status==="-1"){ if(info.file.response.status===-1||info.file.response.status==="-1"){
this.setState({
Buttonloading:false
})
}else{ }else{
this.getdatas(); this.getdatas();
this.setState({ this.setState({
@ -320,6 +322,10 @@ class TPMDataset extends Component {
// this.props.showNotification(`上传成功`); // this.props.showNotification(`上传成功`);
} }
} }
}else{
this.setState({
Buttonloading:false
})
} }
if(info.file.response){ if(info.file.response){
@ -459,9 +465,9 @@ class TPMDataset extends Component {
} }
ButtonloadinghandleChange=()=>{ ButtonloadinghandleChange=()=>{
// this.props.showNotification(`zhzzzzz`); // this.props.showNotification(`zhzzzzz`);
// this.setState({ this.setState({
// Buttonloading:true Buttonloading:false
// }) })
} }
render() { render() {
const {tpmLoading, shixun, user, match} = this.props; const {tpmLoading, shixun, user, match} = this.props;
@ -490,16 +496,14 @@ class TPMDataset extends Component {
beforeUpload: (file) => { beforeUpload: (file) => {
//上传前的操作 //上传前的操作
// console.log('beforeUpload', file.name); // console.log('beforeUpload', file.name);
this.props.showNotification(`文件上传中`); // this.props.showNotification(`文件上传中`);
const isLt300M = file.size / 1024 / 1024 <= 300; const isLt400M = file.size / 1024 / 1024 <= 400;
if (!isLt300M) { if (!isLt400M) {
this.setState({ this.ButtonloadinghandleChange
Buttonloading:false this.props.showNotification('文件大小必须小于等于400MB!');
})
this.props.showNotification('文件大小必须小于等于300MB!');
} }
return isLt300M; return isLt400M;
}, },
}; };
// console.log("showmodelshowmodel"); // console.log("showmodelshowmodel");
@ -548,7 +552,7 @@ class TPMDataset extends Component {
</style> </style>
<div className="intermediatecenter deletebuttom"> <div className="intermediatecenter deletebuttom">
<Upload {...uploadProps}> <Upload {...uploadProps}>
<Button className={"deletebuttom"} loading={this.state.Buttonloading} onClick={ this.ButtonloadinghandleChange}>{this.state.Buttonloading===true?"上传中":"上传文件"}</Button> <Button className={"deletebuttom"} loading={this.state.Buttonloading}>{this.state.Buttonloading===true?"上传中":"上传文件"}</Button>
</Upload></div> </Upload></div>
{ {
data_sets_count>0? data_sets_count>0?

Loading…
Cancel
Save