dev_forum
杨树林 5 years ago
parent 6f10396208
commit 66dea92f25

@ -779,13 +779,13 @@ class PollNew extends Component {
} }
} }
if (maxtie < 2) { if (maxtie < 3) {
if (object.question.question_type === 1) { if (object.question.question_type === 1) {
this.props.showNotification(`选项不能少于2个!`); this.props.showNotification(`选项不能少于3个!`);
return return
} else if (object.question.question_type === 2) { } else if (object.question.question_type === 2) {
this.props.showNotification(`选项不能少于2个!`); this.props.showNotification(`选项不能少于3个!`);
return return
} }
@ -1259,12 +1259,12 @@ class PollNew extends Component {
} }
} }
if (maxtie < 2) { if (maxtie < 3) {
if (object.question.question_type === 1) { if (object.question.question_type === 1) {
this.props.showNotification('选项不能少于2个!'); this.props.showNotification('选项不能少于3个!');
return return
} else if (object.question.question_type === 2) { } else if (object.question.question_type === 2) {
this.props.showNotification('选项不能少于2个!'); this.props.showNotification('选项不能少于3个!');
return return
} }

@ -36,7 +36,6 @@ class TraineetraininginformationModal extends Component {
props: this.props, props: this.props,
userids: this.props.userids, userids: this.props.userids,
game_list:this.props.game_list, game_list:this.props.game_list,
boolgalist:this.props.boolgalist,
experience:this.props.experience, experience:this.props.experience,
}) })
@ -52,26 +51,26 @@ class TraineetraininginformationModal extends Component {
// this.seacthdata(); // this.seacthdata();
} }
componentWillReceiveProps(nextProps) { // componentWillReceiveProps(nextProps) {
// console.log("46"); // // console.log("46");
// console.log(nextProps); // // console.log(nextProps);
// console.log(this.props); // // console.log(this.props);
if (nextProps.boolgalist != this.props.boolgalist) { // if (nextProps.boolgalist != this.props.boolgalist) {
// console.log("50"); // // console.log("50");
// console.log(nextProps.user); // // console.log(nextProps.user);
if (nextProps.boolgalist !== undefined) { // if (nextProps.boolgalist !== undefined) {
// console.log("53"); // // console.log("53");
// console.log(nextProps.user); // // console.log(nextProps.user);
this.setState({ // this.setState({
boolgalist: nextProps.boolgalist, // boolgalist: nextProps.boolgalist,
}) // })
} // }
//
//
} // }
//
//
} // }
LimitNumber=(txt)=> { LimitNumber=(txt)=> {
var str = txt; var str = txt;
if(str.length>25){ if(str.length>25){
@ -81,7 +80,7 @@ class TraineetraininginformationModal extends Component {
} }
render() { render() {
var columns; var columns;
if(this.state.boolgalist&&this.state.boolgalist === true) { if(this.props.boolgalist&&this.props.boolgalist === true) {
columns = [ columns = [
{ {
title: '关卡', title: '关卡',

Loading…
Cancel
Save