dev_oauth
杨树林 5 years ago
parent 8383fe7ab5
commit 51cf018b12

@ -2863,7 +2863,7 @@ class PollNew extends Component {
} }
</style> </style>
<Input placeholder="请输入问卷标题最大限制60个字符" maxLength="60" <Input placeholder="请输入问卷标题最大限制60个字符" maxLength="60"
style={{"margin-top": "15px", "text-align": "left"}} style={{"margin-top": "15px", textAlign: "left"}}
onInput={this.changeTopicName} onInput={this.changeTopicName}
readOnly={readOnlys} readOnly={readOnlys}
autoComplete="off" autoComplete="off"
@ -2887,7 +2887,7 @@ class PollNew extends Component {
<div style={{"color": "#212121", "font-size": "16px"}}>问卷须知</div> <div style={{"color": "#212121", "font-size": "16px"}}>问卷须知</div>
<TextArea placeholder="请输入本次问卷答题的相关说明最大限制100个字符" <TextArea placeholder="请输入本次问卷答题的相关说明最大限制100个字符"
style={{"height": "120px", "margin-top": "15px", "text-align": "left"}} style={{"height": "120px", "margin-top": "15px", textAlign: "left"}}
maxLength="100" maxLength="100"
readOnly={readOnlys} readOnly={readOnlys}
onInput={this.changeTopicNametwo} onInput={this.changeTopicNametwo}
@ -3012,8 +3012,8 @@ class PollNew extends Component {
{item.question.answers === undefined ? "" : item.question.answers.map((items, i) => { {item.question.answers === undefined ? "" : item.question.answers.map((items, i) => {
return ( return (
<div className="h20 pt20" style={{"clear": "both"}}> <div className="h20 pt20" style={{"clear": "both"}}>
<Radio value={i} className={"fl"} style={{"text-align": "left",marginTop:"3px"}}></Radio> <Radio value={i} className={"fl"} style={{textAlign: "left",marginTop:"3px"}}></Radio>
<span className={" flex1 "} style={{"text-align": "left","white-space":"pre-wrap","word-break": "break-all","word-wrap": "break-word","float": "left","width":"1116px"}} >{items.answer_text}</span> <span className={" flex1 "} style={{textAlign: "left","white-space":"pre-wrap","word-break": "break-all","word-wrap": "break-word","float": "left","width":"1116px"}} >{items.answer_text}</span>
</div> </div>
) )
@ -3029,8 +3029,8 @@ class PollNew extends Component {
{item.question.answers === undefined ? "" : item.question.answers.map((items, i) => { {item.question.answers === undefined ? "" : item.question.answers.map((items, i) => {
return ( return (
<div className="mt10 pt20 " style={{"clear": "both"}}> <div className="mt10 pt20 " style={{"clear": "both"}}>
<Checkbox value={i} key={i} className={"fl"} style={{"text-align": "left"}}></Checkbox> <Checkbox value={i} key={i} className={"fl"} style={{textAlign: "left",marginRight:"8px"}}></Checkbox>
<span className={" flex1"} style={{"text-align": "left","white-space":"pre-wrap","word-break": "break-all","word-wrap": "break-word","float": "left","width":"1120px"}}>{items.answer_text}</span> <span className={" flex1"} style={{textAlign: "left","white-space":"pre-wrap","word-break": "break-all","word-wrap": "break-word","float": "left","width":"1116px"}}>{items.answer_text}</span>
</div> </div>
) )
})} })}
@ -3086,7 +3086,7 @@ class PollNew extends Component {
<p className="df mb20"> <p className="df mb20">
<span <span
className="color-grey-6 mr3 w60 font-16 lineh-40" className="color-grey-6 mr3 w60 font-16 lineh-40"
style={{"text-align": "center"}}>其它</span> style={{textAlign: "center"}}>其它</span>
<input <input
className="mr20 input-flex-40 TextAreainput" disabled className="mr20 input-flex-40 TextAreainput" disabled
@ -3100,7 +3100,7 @@ class PollNew extends Component {
: ""} : ""}
</p>) : (<p className="df mb20"> </p>) : (<p className="df mb20">
<span className="color-grey-6 mr10 w60 font-16 lineh-40" <span className="color-grey-6 mr10 w60 font-16 lineh-40"
style={{"text-align": "center"}}>选项</span> style={{textAlign: "center"}}>选项</span>
<TextArea <TextArea
autosize={{minRows: 1, maxRows: 5}} autosize={{minRows: 1, maxRows: 5}}
@ -3172,7 +3172,7 @@ class PollNew extends Component {
"height": "80%"; "height": "80%";
"margin-top": "5px"; "margin-top": "5px";
"margin-left": "5px"; "margin-left": "5px";
"text-align": "center"; textAlign: "center";
"display": "block"; "display": "block";
"opacity": "1"; "opacity": "1";
} }
@ -3328,7 +3328,7 @@ class PollNew extends Component {
<p className="df mb20"> <p className="df mb20">
<span <span
className="color-grey-6 mr3 w60 font-16 lineh-40" className="color-grey-6 mr3 w60 font-16 lineh-40"
style={{"text-align": "center"}}>其它</span> style={{textAlign: "center"}}>其它</span>
<input <input
className="mr20 input-flex-40 TextAreainput" disabled className="mr20 input-flex-40 TextAreainput" disabled
@ -3342,7 +3342,7 @@ class PollNew extends Component {
: ""} : ""}
</p>) : (<p className="df mb20"> </p>) : (<p className="df mb20">
<span className="color-grey-6 mr10 w60 font-16 lineh-40" <span className="color-grey-6 mr10 w60 font-16 lineh-40"
style={{"text-align": "center"}}>选项</span> style={{textAlign: "center"}}>选项</span>
<TextArea <TextArea
autosize={{minRows: 1, maxRows: 5}} autosize={{minRows: 1, maxRows: 5}}
@ -3414,7 +3414,7 @@ class PollNew extends Component {
"height": "80%"; "height": "80%";
"margin-top": "5px"; "margin-top": "5px";
"margin-left": "5px"; "margin-left": "5px";
"text-align": "center"; textAlign: "center";
"display": "block"; "display": "block";
"opacity": "1"; "opacity": "1";
} }
@ -3579,7 +3579,7 @@ class PollNew extends Component {
<p className="df mb20"> <p className="df mb20">
<span <span
className="color-grey-6 mr3 w60 font-16 lineh-40" className="color-grey-6 mr3 w60 font-16 lineh-40"
style={{"text-align": "center"}}>其它</span> style={{textAlign: "center"}}>其它</span>
<input <input
className="mr20 input-flex-40 TextAreainput" disabled className="mr20 input-flex-40 TextAreainput" disabled
@ -3593,7 +3593,7 @@ class PollNew extends Component {
: ""} : ""}
</p>) : (<p className="df mb20"> </p>) : (<p className="df mb20">
<span className="color-grey-6 mr10 w60 font-16 lineh-40" <span className="color-grey-6 mr10 w60 font-16 lineh-40"
style={{"text-align": "center"}}>选项</span> style={{textAlign: "center"}}>选项</span>
<TextArea <TextArea
autosize={{minRows: 1, maxRows: 5}} autosize={{minRows: 1, maxRows: 5}}
@ -3665,7 +3665,7 @@ class PollNew extends Component {
"height": "80%"; "height": "80%";
"margin-top": "5px"; "margin-top": "5px";
"margin-left": "5px"; "margin-left": "5px";
"text-align": "center"; textAlign: "center";
"display": "block"; "display": "block";
"opacity": "1"; "opacity": "1";
} }

Loading…
Cancel
Save