12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <%var cssParam = {%>
- <%};%>
- <%var jsParam = {%>
- <script type="text/javascript">
- </script>
- <%};%>
- <%layout("/onlineSurvey/afterPage/commonPage/_layout.html", {nav: "网上调查结果",meunsel:"onlineSurveyManage",jsParam:jsParam,cssParam:cssParam}) {%>
- <div class="col-xs-12">
- <div class="row">
- <div class="table-responsive">
- <table id="sample-table-1" class="table table-striped table-bordered table-hover">
- <thead>
- <tr>
- <th>序号</th>
- <th>主题名称</th>
- <th>选项序号</th>
- <th>选项内容</th>
- <th>选择数量</th>
- </tr>
- </thead>
- <tbody>
- <%for(onlineSurveyThemeResult in onlineSurveyThemeResultlist!){%>
- <tr>
- <td rowspan="${onlineSurveyThemeResult.options.~size!0+1}">${onlineSurveyThemeResultLP.index}</td>
- <td rowspan="${onlineSurveyThemeResult.options.~size!0+1}">${onlineSurveyThemeResult.explains!''}</td>
- <td>1</td>
- <td>${onlineSurveyThemeResult.optionsExplains!''}</td>
- <td>${onlineSurveyThemeResult.optionsResultNum!0}</td>
- </tr>
- <%for(tempOption in onlineSurveyThemeResult.options){%>
- <tr>
- <td>${tempOptionLP.index+1}</td>
- <td>${tempOption.explains!''}</td>
- <td>${tempOption.resultNum!0}</td>
- </tr>
- <%}%>
- <%}elsefor{%>
- <tr>
- <td colspan="8">没有记录!</td>
- </tr>
- <%}%>
- </tbody>
- </table>
- </div>
- <div class="pull-right">
- <%include("/onlineSurvey/afterPage/commonPage/_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/admin/onlineSurveyFront/viewResult?pageNumber=", "urlParas": urlParas!''}){}%>
- </div>
- <!-- /.table-responsive -->
- </div>
- <!-- /span -->
- </div>
- <!-- /row -->
- <%}%>
-
|