| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <!DOCTYPE HTML>
- <html xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
- layout:decorate="~{admin/common/common}">
- <head>
- <title>项目申报</title>
- </head>
- <body layout:fragment="content">
- <nav class="breadcrumb" th:action="@{/projectDeclaration/index}" th:method="post">
- <i class="Hui-iconfont"></i>
- 首页
- <span th:unless="${is_label}" class="c-gray en">> 项目申报</span>
- <span th:unless="${is_label}" class="c-gray en">> 列表</span>
- <a class="btn btn-success radius r" style="line-height:1.6em;margin-top:3px" href="javascript:location.replace(location.href);" title="刷新" >
- <i class="Hui-iconfont"></i>
- </a>
- </nav>
- <form id="myForm" th:action="@{/project/list}" th:method="post" >
- <div class="page-container">
- <div class="text-c">
- <input type="text" class="input-text" style="width:250px" placeholder="请输入关键字搜索" id="keyword" name="keyword" th:value="${keyword}"/>
- <input type="button" value="搜索" class="btn btn-primary" onclick="$('#myForm').submit();">
- </div>
- <div class="cl pd-5 bg-1 bk-gray mt-20">
- <span class="l">
- <a th:onclick="'javascript:open_dialog(\'新增\',\'/project/add\',\'1000\',\'500\');'" class="btn btn-primary radius"><i class="Hui-iconfont"></i> 新增</a>
- </span>
- <span class="r">共有数据:<strong th:text="${pageInfo.total}" id="total">54</strong> 条</span>
- </div>
- <!-- 表格 -->
- <table id="index" class="table table-border table-bordered table-bg table-hover" style="table-layout: fixed;width:100%;">
- <thead>
- <tr class="text-c">
- <th>编号</th>
- <th>年份</th>
- <th>项目大类</th>
- <th>项目小类</th>
- <th>互斥类</th>
- <th>是否技改</th>
- <th>是否申请类</th>
- <th>责任单位</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="model,iterStat:${pageInfo.list}" th:object="${model}">
- <td th:text="${iterStat.index+1}"></td>
- <td th:text="*{project_year}"></td>
- <td th:text="*{project_type_name}"></td>
- <td th:text="*{project_name}" class="text-overflow" th:title="*{project_name}"></td>
- <td th:text="*{mutex}"></td>
- <td class="td-status">
- <span class="label radius" th:unless="*{is_technical}">否</span>
- <span class="label radius label-success" th:if="*{is_technical}">是</span>
- </td>
- <td class="td-status">
- <span class="label radius" th:unless="*{is_application}">否</span>
- <span class="label radius label-success" th:if="*{is_application}">是</span>
- </td>
- <td th:text="*{department_name}"></td>
- <td class="td-manage">
- <a title="编辑" href="javascript:;" th:onclick="'javascript:open_dialog(\'编辑项目名称\',\'/project/edit/'+*{id}+'\',\'800\',\'500\');'" class="ml-5" style="text-decoration:none">编辑</a>
- <a title="删除" href="javascript:;" th:onclick="'javascript:project_del(\'/project/delete/'+*{id}+'\');'" class="ml-5" style="text-decoration:none">删除</a>
- </td>
- </tr>
- </tbody>
- </table>
- <div th:replace="admin/common/page :: page"></div>
- </div>
- </form>
- <script type="text/javascript" th:src="@{/js/government/project/project_list.js}"></script>
- <script type="text/javascript" th:src="@{/js/common/page.js}"></script>
- <script th:inline="javascript">
-
- </script>
- </body>
- </html>
|