12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <%var cssParam = {%>
- <%};%>
- <%var jsParam = {%>
- <script type="text/javascript">
- function todel(url,msg){
- bootbox.dialog({
- title: "系统提示",
- message: msg,
- locale:"zh_CN",
- buttons: {
- cancel: {label: "取消",className: "btn-cancel",callback: function() {}},
- ok: {label: "确定",className: "btn-success",
- callback: function() {
- window.location.href = url;
- }
- }
- }
- });
- }
- </script>
- <%};%>
- <%layout("/ace/commonPage/_layout.html", {nav: "添加解决方案",meunsel:"Manage",jsParam:jsParam,cssParam:cssParam}) {%>
- <div class="col-xs-12">
- <div class="row">
- <form id="searchForm" action="${contextPath}/TechnicalDemandSolution/getTechnicalDemandList" method="post" class="form-horizontal">
- <input type="hidden" name="pageNumber" value="1" />
- 查询名称:<input type="text" name="name" placeholder="请输入名称" value="" />
- <button class="btn btn-xs btn-primary" onclick="document.getElementById('searchForm').submit();"><i class="icon-search bigger-120">查询</i></button>
- </form>
- </div>
- </div>
- <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>
- <th>联盟名称</th>
- <th>解决方案总量</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- <%for(tempDate in dateList!){%>
- <tr>
- <td>${tempDateLP.index}</td>
- <td>${tempDate.name!''}</td>
- <td>${tempDate.endDate!''}</td>
- <td>${tempDate.createDate!''}</td>
- <td>${tempDate.enterpriseName!''}</td>
- <td>${tempDate.allianceName!''}</td>
- <td>${tempDate.solutionAmount!''}</td>
- <td>
- <div class="visible-md visible-lg hidden-sm hidden-xs btn-group">
- <a class="btn btn-xs btn-info" href="${contextPath}/TechnicalDemandAudit/toviewAndSolutionList?id=${tempDate.id}" data-toggle="tooltip" data-placement="auto" title="查看详情">
- <i class="icon-flag bigger-120"></i>
- </a>
- <a class="btn btn-xs btn-info" href="${contextPath}/TechnicalDemandSolution/toSolution?id=${tempDate.id}&pageNumber=${pageNumber!1}&urlParas=${urlParas!}" data-toggle="tooltip" data-placement="auto" title="添加解决方案">
- <i class="icon-edit bigger-120"></i>
- </a>
- </div>
- </td>
- </tr>
- <%}elsefor{%>
- <tr>
- <td colspan="13">没有记录!</td>
- </tr>
- <%}%>
- </tbody>
- </table>
- </div>
- <div class="pull-right">
- <%include("/ace/commonPage/_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/technicalDemandSolution/getTechnicalDemandList?pageNumber=", "urlParas": urlParas!''}){}%>
- </div>
- <!-- /.table-responsive -->
- </div>
- <!-- /span -->
- </div>
- <!-- /row -->
- <%}%>
|