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