| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <!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">
- <i class="Hui-iconfont"></i>
- 首页
-
- </nav>
- <div class="page-container">
- <div class="row cl">
- <div class="col-xs-10" style="width:48%;">
- <table id="todoTb" class="table table-border table-bordered table-bg table-hover">
- <thead>
- <tr>
- <th scope="col" colspan="2">维修跟踪</th>
- </tr>
- <tr class="text-c">
- <th>主题</th>
- <th>状态</th>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="model:${maintenanceList}" th:object="${model}">
- <td th:text="*{question_name}"></td>
- <td class="td-status" th:switch="*{is_processed}" >
- <span th:case="false" class="label radius" >待处理</span>
- <span th:case="true" class="label radius label-success" >已处理</span>
- </td>
- </tr>
- <tr>
- <td scope="col" colspan="2" >
- <a th:href="@{/build/maintenance/list}" style="float:right;">更多>>></a>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <div class="col-xs-10" style="width:48%;">
- <table id="tenancyTb" class="table table-border table-bordered table-bg table-hover">
- <thead>
- <tr>
- <th scope="col" colspan="5">缴费提醒</th>
- </tr>
- <tr class="text-c">
- <th>费用项</th>
- <th>费用(元)</th>
- <th>应缴费日期</th>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="model:${feeList}" th:object="${model}">
- <td th:text="*{fee_type}"></td>
- <td th:text="*{total_fee}"></td>
- <td th:text="*{pay_time}"></td>
- </tr>
- <tr>
- <td scope="col" colspan="5" ><a th:href="@{/build/company/feeList}" style="float:right;">更多>>></a></td>
- </tr>
- </tbody>
- </table>
- </div>
-
- </div>
- <div class="row cl">
- <div class="col-xs-10" style="width:48%;">
- <table id="notifyTb" class="table table-border table-bordered table-bg table-hover">
- <thead>
- <tr>
- <th scope="col" colspan="1">通知公告</th>
- </tr>
- </thead>
- <tbody>
- <tr class="text-c" th:each="model:${latestNotifyList}" th:object="${model}">
- <td class="text-l">
- <div>
- <div><a th:href="@{'/government/notify/info/'+*{id}+'/'+*{notify_detail_id}}" th:text="*{title}"></a></div>
- <div th:text="*{notify_abstract}"></div>
- <div class="text-r" th:text="*{create_time}"></div>
- </div>
- </td>
- </tr>
- <tr>
- <td scope="col" colspan="1" ><a th:href="@{/government/notify/list}" style="float:right;">更多>>></a></td>
- </tr>
- </tbody>
- </table>
- </div>
-
- </div>
-
- </div>
- <script type="text/javascript" th:src="@{/js/common/page.js}"></script>
- <script type="text/javascript" th:src="@{/js/build/index/build_index.js}"></script>
- <script th:inline="javascript">
- </script>
- </body>
- </html>
|