optionsViewPage.html 333 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <%var cssParam = {%>
  2. <%};%>
  3. <%var jsParam = {%>
  4. <script type="text/javascript">
  5. </script>
  6. <%};%>
  7. <%layout("/onlineSurvey/afterPage/commonPage/_layout_2.html", {jsParam:jsParam,cssParam:cssParam}) {%>
  8. <div class="col-xs-12">
  9. <form class="form-horizontal" role="form" action="" method="post">
  10. <div class="form-group">
  11. <label class="col-sm-3 no-padding-right" style="text-align: right;"> 主题编号: </label>
  12. <span class="col-sm-9 no-padding-right" style="text-align: left;"> ${onlineSurveyThemeOptions.themeId} </span>
  13. </div>
  14. <div class="form-group">
  15. <label class="col-sm-3 no-padding-right" style="text-align: right;"> 选项说明: </label>
  16. <label class="col-sm-9 no-padding-right" style="text-align: left;"> ${onlineSurveyThemeOptions.explains} </label>
  17. </div>
  18. <div class="form-group">
  19. <label class="col-sm-3 no-padding-right" style="text-align: right;"> 状态: </label>
  20. <label class="col-sm-9 no-padding-right" style="text-align: left;">
  21. <%if(onlineSurveyThemeOptions.state!'' == 0){%>
  22. 开启
  23. <%}else if(onlineSurveyThemeOptions.state!'' == 1){%>
  24. 未开启
  25. <%}else{%>
  26. 结束
  27. <%}%>
  28. </label>
  29. </div>
  30. </form>
  31. <!-- /span -->
  32. </div>
  33. <!-- /row -->
  34. <%}%>