12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <%var cssParam = {%>
- <%};%>
- <%var jsParam = {%>
- <script type="text/javascript">
- </script>
- <%};%>
- <%layout("/onlineSurvey/afterPage/commonPage/_layout_2.html", {jsParam:jsParam,cssParam:cssParam}) {%>
- <div class="col-xs-12">
- <form class="form-horizontal" role="form" action="" method="post">
- <div class="form-group">
- <label class="col-sm-3 no-padding-right" style="text-align: right;"> 主题编号: </label>
- <span class="col-sm-9 no-padding-right" style="text-align: left;"> ${onlineSurveyThemeOptions.themeId} </span>
- </div>
- <div class="form-group">
- <label class="col-sm-3 no-padding-right" style="text-align: right;"> 选项说明: </label>
- <label class="col-sm-9 no-padding-right" style="text-align: left;"> ${onlineSurveyThemeOptions.explains} </label>
- </div>
-
- <div class="form-group">
- <label class="col-sm-3 no-padding-right" style="text-align: right;"> 状态: </label>
- <label class="col-sm-9 no-padding-right" style="text-align: left;">
- <%if(onlineSurveyThemeOptions.state!'' == 0){%>
- 开启
- <%}else if(onlineSurveyThemeOptions.state!'' == 1){%>
- 未开启
- <%}else{%>
- 结束
- <%}%>
- </label>
- </div>
- </form>
- <!-- /span -->
- </div>
- <!-- /row -->
- <%}%>
-
|