12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/webpage/include/taglib.jsp"%>
- <html>
- <head>
- <title>需求基本信息</title>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8">
- <meta name="decorator" content="ani"/>
- <%@ include file="/webpage/include/bootstraptable.jsp"%>
- <%@include file="/webpage/include/treeview.jsp" %>
- <%@include file="projectDisclosurePlan.js" %>
- </head>
- <body>
- <div class="wrapper wrapper-content">
- <div class="panel panel-primary">
- <div class="panel-heading">
- <h3 class="panel-title">交底计划安排信息</h3>
- </div>
- <div class="panel-body">
- <!-- 搜索 -->
- <div id="search-collapse" class="collapse">
- <div class="accordion-inner">
- <form:form id="searchForm" modelAttribute="project" class="form form-horizontal well clearfix">
- <div class="col-xs-12 col-sm-6 col-md-4">
- <label class="label-item single-overflow pull-left" title="储备项目暂定名称:">储备项目暂定名称:</label>
- <form:input path="reserveProjectName" htmlEscape="false" maxlength="100" class=" form-control"/>
- </div>
- <div class="col-xs-12 col-sm-6 col-md-4">
- <div style="margin-top:26px">
- <a id="search" class="btn btn-primary btn-rounded btn-bordered btn-sm"><i class="fa fa-search"></i> 查询</a>
- <a id="reset" class="btn btn-primary btn-rounded btn-bordered btn-sm" ><i class="fa fa-refresh"></i> 重置</a>
- </div>
- </div>
- </form:form>
- </div>
- </div>
-
- <!-- 工具栏 -->
- <div id="toolbar">
- <shiro:hasPermission name="sg:managementcenter:project:add">
- <button id="edit" class="btn btn-primary" onclick="edit()">
- <i class="glyphicon glyphicon-edit"></i> 修改
- </button>
- </shiro:hasPermission>
- <shiro:hasPermission name="sg:managementcenter:project:import">
- <button id="btnImport" class="btn btn-info"><i class="fa fa-folder-open-o"></i> 导入</button>
- </shiro:hasPermission>
- <%-- <shiro:hasPermission name="sg:managementcenter:project:export">
- <button id="export" class="btn btn-warning">
- <i class="fa fa-file-excel-o"></i> 导出
- </button>
- </shiro:hasPermission>--%>
- </div>
-
- <!-- 表格 -->
- <table id="projectTable" style="table-layout:fixed" data-toolbar="#toolbar"></table>
- </div>
- </div>
- </div>
- </body>
- </html>
|