|
|
|
@ -96,7 +96,7 @@ class PollDetailTabSecond extends Component{
|
|
|
|
|
<p className="countHeader">
|
|
|
|
|
{
|
|
|
|
|
item.question.question_type==3?
|
|
|
|
|
<ul className="clearfix">
|
|
|
|
|
<ul className="clearfix df">
|
|
|
|
|
<span style={{width:"6%"}}>编号</span>
|
|
|
|
|
<span style={{width:"50%",textAlign:"left"}}>文本答案</span>
|
|
|
|
|
</ul>
|
|
|
|
@ -117,9 +117,9 @@ class PollDetailTabSecond extends Component{
|
|
|
|
|
item.question.vote_text.map((txt,t)=>{
|
|
|
|
|
return(
|
|
|
|
|
<div className="countBody">
|
|
|
|
|
<ul className="clearfix">
|
|
|
|
|
<span style={{width:"6%"}}>{t+1}</span>
|
|
|
|
|
<span style={{flex:"1",textAlign:"left"}} className="color-grey-3 break-word">
|
|
|
|
|
<ul className="clearfix df">
|
|
|
|
|
<span style={{width:"6%"}} className="pl8">{t+1}</span>
|
|
|
|
|
<span className="color-grey-3 break-word edu-txt-left flex1">
|
|
|
|
|
<li>{txt}</li>
|
|
|
|
|
</span>
|
|
|
|
|
</ul>
|
|
|
|
|