|
|
|
@ -3007,9 +3007,9 @@ class PollNew extends Component {
|
|
|
|
|
{/*自动生成修改好的获取到的*/}
|
|
|
|
|
{/**************************************************************************/}
|
|
|
|
|
{this.state.poll_questions === undefined ? "" : this.state.poll_questions.map((item, index) => {
|
|
|
|
|
console.log('打印this.state.poll_questions');
|
|
|
|
|
console.log(this.state.poll_questions);
|
|
|
|
|
console.log(this.state.adddom);
|
|
|
|
|
// console.log('打印this.state.poll_questions');
|
|
|
|
|
// console.log(this.state.poll_questions);
|
|
|
|
|
// console.log(this.state.adddom);
|
|
|
|
|
let resultDom;
|
|
|
|
|
resultDom = <div >
|
|
|
|
|
<p className="clearfix font-16">
|
|
|
|
@ -3061,7 +3061,7 @@ 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={{textAlign: "left",marginTop:"3px"}}></Radio>
|
|
|
|
|
<Radio value={i} className={"fl"} style={{textAlign: "left"}}></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>
|
|
|
|
|