projectDisclosurePlan.jsp 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/webpage/include/taglib.jsp"%>
  3. <html>
  4. <head>
  5. <title>需求基本信息</title>
  6. <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  7. <meta name="decorator" content="ani"/>
  8. <%@ include file="/webpage/include/bootstraptable.jsp"%>
  9. <%@include file="/webpage/include/treeview.jsp" %>
  10. <%@include file="projectDisclosurePlan.js" %>
  11. </head>
  12. <body>
  13. <div class="wrapper wrapper-content">
  14. <div class="panel panel-primary">
  15. <div class="panel-heading">
  16. <h3 class="panel-title">交底计划安排信息</h3>
  17. </div>
  18. <div class="panel-body">
  19. <!-- 搜索 -->
  20. <div id="search-collapse" class="collapse">
  21. <div class="accordion-inner">
  22. <form:form id="searchForm" modelAttribute="project" class="form form-horizontal well clearfix">
  23. <div class="col-xs-12 col-sm-6 col-md-4">
  24. <label class="label-item single-overflow pull-left" title="储备项目暂定名称:">储备项目暂定名称:</label>
  25. <form:input path="reserveProjectName" htmlEscape="false" maxlength="100" class=" form-control"/>
  26. </div>
  27. <div class="col-xs-12 col-sm-6 col-md-4">
  28. <div style="margin-top:26px">
  29. <a id="search" class="btn btn-primary btn-rounded btn-bordered btn-sm"><i class="fa fa-search"></i> 查询</a>
  30. <a id="reset" class="btn btn-primary btn-rounded btn-bordered btn-sm" ><i class="fa fa-refresh"></i> 重置</a>
  31. </div>
  32. </div>
  33. </form:form>
  34. </div>
  35. </div>
  36. <!-- 工具栏 -->
  37. <div id="toolbar">
  38. <shiro:hasPermission name="sg:managementcenter:project:add">
  39. <button id="edit" class="btn btn-primary" onclick="edit()">
  40. <i class="glyphicon glyphicon-edit"></i> 修改
  41. </button>
  42. </shiro:hasPermission>
  43. <shiro:hasPermission name="sg:managementcenter:project:import">
  44. <button id="btnImport" class="btn btn-info"><i class="fa fa-folder-open-o"></i> 导入</button>
  45. </shiro:hasPermission>
  46. <%-- <shiro:hasPermission name="sg:managementcenter:project:export">
  47. <button id="export" class="btn btn-warning">
  48. <i class="fa fa-file-excel-o"></i> 导出
  49. </button>
  50. </shiro:hasPermission>--%>
  51. </div>
  52. <!-- 表格 -->
  53. <table id="projectTable" style="table-layout:fixed" data-toolbar="#toolbar"></table>
  54. </div>
  55. </div>
  56. </div>
  57. </body>
  58. </html>