| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <!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>
- <style>
-
- .conditionInput {
- width:250px;
- }
- .conditionDate {
- width:150px;
- }
- </style>
- </head>
- <body layout:fragment="content">
- <nav class="breadcrumb" th:action="@{/projectApplication/list}" th:method="post">
- <i class="Hui-iconfont"></i>
- 首页
- <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="@{/company/projectIntelligent/list}" th:method="get" >
- <div class="page-container">
- <div class="cl pd-5 bg-1 bk-gray mt-20">
- <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 style="width:0px;"></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="*{apply_no}"></td>
- <td th:text="*{super_type_name}"></td>
- <td th:text="*{projectName}"></td>
- <td th:text="*{apply_type}"></td>
- <td th:text="*{apply_status_name}"></td>
- <td class="td-manage">
- <a title="查看"
- th:onclick="'javascript:open_dialog(\'内容\',\'/company/projectIntelligent/detail/'+*{id}+'\',\'800\',\'400\');'"
- class="ml-5" style="text-decoration:none">内容</a>
- <a th:if="*{apply_status}!=0 and *{apply_status}!=3" title="单据详情"
- th:onclick="'javascript:open_dialog(\'单据详情\',\'/company/projectIntelligent/check/'+*{id}+'\',\'800\',\'400\');'"
- class="ml-5" style="text-decoration:none">单据详情</a>
- <a th:if="*{canEdit}" title="编辑"
- th:onclick="'javascript:open_dialog(\'编辑\',\'/company/projectIntelligent/edit/'+*{id}+'\',\'800\',\'400\');'"
- class="ml-5" style="text-decoration:none">编辑</a>
- <a th:if="*{canDelete}" title="删除"
- th:onclick="'javascript:apply_delete(\'/company/projectIntelligent/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/company/project_application/apply_list.js}"></script>
- <script type="text/javascript" th:src="@{/js/common/page.js}"></script>
- <script th:inline="javascript">
- laydate.render({
- elem: '#startTime', //指定元素
- //min: 0,
- format: 'yyyy-MM-dd',
- type: 'date',
- //showBottom: false
- });
- laydate.render({
- elem: '#endTime', //指定元素
- //min: 0,
- format: 'yyyy-MM-dd',
- type: 'date',
- //showBottom: false
- });
-
- </script>
- </body>
- </html>
|