resultViewPage.html 333 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <%var cssParam = {%>
  2. <%};%>
  3. <%var jsParam = {%>
  4. <script type="text/javascript">
  5. </script>
  6. <%};%>
  7. <%layout("/onlineSurvey/afterPage/commonPage/_layout.html", {nav: "网上调查结果",meunsel:"onlineSurveyManage",jsParam:jsParam,cssParam:cssParam}) {%>
  8. <div class="col-xs-12">
  9. <div class="row">
  10. <div class="table-responsive">
  11. <table id="sample-table-1" class="table table-striped table-bordered table-hover">
  12. <thead>
  13. <tr>
  14. <th>序号</th>
  15. <th>主题名称</th>
  16. <th>选项序号</th>
  17. <th>选项内容</th>
  18. <th>选择数量</th>
  19. </tr>
  20. </thead>
  21. <tbody>
  22. <%for(onlineSurveyThemeResult in onlineSurveyThemeResultlist!){%>
  23. <tr>
  24. <td rowspan="${onlineSurveyThemeResult.options.~size!0+1}">${onlineSurveyThemeResultLP.index}</td>
  25. <td rowspan="${onlineSurveyThemeResult.options.~size!0+1}">${onlineSurveyThemeResult.explains!''}</td>
  26. <td>1</td>
  27. <td>${onlineSurveyThemeResult.optionsExplains!''}</td>
  28. <td>${onlineSurveyThemeResult.optionsResultNum!0}</td>
  29. </tr>
  30. <%for(tempOption in onlineSurveyThemeResult.options){%>
  31. <tr>
  32. <td>${tempOptionLP.index+1}</td>
  33. <td>${tempOption.explains!''}</td>
  34. <td>${tempOption.resultNum!0}</td>
  35. </tr>
  36. <%}%>
  37. <%}elsefor{%>
  38. <tr>
  39. <td colspan="8">没有记录!</td>
  40. </tr>
  41. <%}%>
  42. </tbody>
  43. </table>
  44. </div>
  45. <div class="pull-right">
  46. <%include("/onlineSurvey/afterPage/commonPage/_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/admin/onlineSurveyFront/viewResult?pageNumber=", "urlParas": urlParas!''}){}%>
  47. </div>
  48. <!-- /.table-responsive -->
  49. </div>
  50. <!-- /span -->
  51. </div>
  52. <!-- /row -->
  53. <%}%>