1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <%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;"> ${onlineSurveyTheme.userid} </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;"> ${onlineSurveyTheme.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;"> <img alt="${onlineSurveyTheme.name!''}" width="50px" height="50px" src="${contextPath}/imageFile/getImage?imagePath=${onlineSurveyTheme.imgPatch!''}" > </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;"> ${onlineSurveyTheme.selnum} </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(onlineSurveyTheme.state!'' == 0){%>
- 开启
- <%}else if(onlineSurveyTheme.state!'' == 1){%>
- 未开启
- <%}else{%>
- 结束
- <%}%>
- </label>
- </div>
- </form>
- <!-- /span -->
- </div>
- <!-- /row -->
- <%}%>
-
|