hjm 6 years ago
parent e4166bb0e6
commit c0359dc57d

@ -71,7 +71,7 @@ function create_editorMD(id, width, high, placeholder, imageUrl,initValue, callb
} }
}); });
// 一个页面有多个md时onload方法只执行了一次 // 一个页面有多个md时onload方法只执行了一次
window.md_elocalStorage(editorName, `MemoQuestion_${id}`, `${id}`); // window.md_elocalStorage(editorName, `MemoQuestion_${id}`, `${id}`);
return editorName; return editorName;
} }

@ -126,7 +126,7 @@ class AccountBasic extends Component {
// 输入昵称时change剩余的字数 // 输入昵称时change剩余的字数
changeNickName=(e)=>{ changeNickName=(e)=>{
let num= 20 - parseInt(e.target.value.length); let num= 30 - parseInt(e.target.value.length);
this.setState({ this.setState({
nameLength:num < 0 ? 0 : num nameLength:num < 0 ? 0 : num
}) })
@ -394,11 +394,11 @@ class AccountBasic extends Component {
} }
} }
checkNameLength = (rule, value, callback) => { checkNameLength = (rule, value, callback) => {
if (value && value.length <= 10) { if (value && value.length <= 30) {
callback(); callback();
return; return;
} }
callback('请输入真实姓名,最大限制10个字符'); callback('请输入真实姓名,最大限制30个字符');
} }
render() { render() {
@ -498,8 +498,8 @@ class AccountBasic extends Component {
message: '请输入您的昵称', message: '请输入您的昵称',
}], }],
})( })(
<Input placeholder="请输入您的昵称,最大限制20个字符" onInput={this.changeNickName} maxLength="20" suffix ={ <Input placeholder="请输入您的昵称,最大限制30个字符" onInput={this.changeNickName} maxLength="30" suffix ={
<span className="color-grey-6 font-13">{String(nameLength)}/20</span> <span className="color-grey-6 font-13">{String(nameLength)}/30</span>
}></Input> }></Input>
)} )}
</Form.Item> </Form.Item>
@ -512,11 +512,11 @@ class AccountBasic extends Component {
rules: [{ rules: [{
// initialValue: this.state.cityDefaultValue, // initialValue: this.state.cityDefaultValue,
required: true, required: true,
message: '请输入真实姓名,最大限制10个字符', message: '请输入真实姓名,最大限制30个字符',
validator: this.checkNameLength validator: this.checkNameLength
}], }],
})( })(
<Input placeholder="请输入真实姓名,最大限制10个字符" disabled={!showRealName && this.state.forDisable == true } suffix={ <Input placeholder="请输入真实姓名,最大限制30个字符" disabled={!showRealName && this.state.forDisable == true } suffix={
<i className={showRealName?"iconfont icon-xianshi font-18 color-blue":"iconfont icon-yincang font-18 color-blue"} <i className={showRealName?"iconfont icon-xianshi font-18 color-blue":"iconfont icon-yincang font-18 color-blue"}
onClick={()=>this.showOrHide(showRealName)}></i> onClick={()=>this.showOrHide(showRealName)}></i>
}></Input> }></Input>

Loading…
Cancel
Save