| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <!DOCTYPE html>
- <html lang="en"
- xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
- layout:decorate="~{home/common/common}">
- <head>
- <meta charset="UTF-8">
- <title th:text="${navigation_name}"></title>
- </head>
- <body layout:fragment="content">
- <!-- 头部导航 -->
- <div th:replace="~{home/common/header :: header}"></div>
- <!--nav-->
- <div class="center_nav">
- <div th:replace="~{home/common/header :: nav}"></div>
- </div>
- <div class="policy-bg">
- <div class="policy-content">
- <!--面包屑-->
- <div class="row">
- <div class="col-sm-6 col-md-6 col-lg-8 hidden-xs" style="padding-left: 0;">
- <ol class="breadcrumb" style="padding-top: 15px;border-bottom: 0px solid #fff;margin-bottom: 0;">
- <li>
- <a th:href="@{/home}">首页</a>
- </li>
- <li class="active"><a th:href="@{/home/informList/3}"><cite>[[${navigation_name}]]</cite></a></li>
- <li>推荐项目申报</li>
- </ol>
- </div>
- <!--搜索框-->
- <div class="col-sm-6 col-md-6 col-lg-4 col-xs-12">
- <div style="display: inline-block;float: right;padding-top: 10px;width: 100%;">
- <span style="display: inline-block;width:100%">
- <input type="text" id="keyWord" name="keyword" placeholder="请输入政策搜索关键词" class="layui-input" style="width: 100%;display: inline-block">
- </span>
- <button id="keywordSearch"style="display: inline-block;float: right;background:none;border:none;">
- <i class=" iconfont icon-sousuo"></i>
- </button>
- </div>
- </div>
- </div>
- <!--内容-->
- <div>
- <input type="hidden" id="satisfaction_score" th:name="satisfaction_score" th:value="${diagnosticReport.satisfaction_score}"/>
- <input type="hidden" id="report_feedback" th:name="feedback" th:value="${diagnosticReport.feedback}"/>
- <script th:src="@{/js/government/policy/leftBase.js}"></script>
- <form id="scoreForm">
- <input type="hidden" id="cid" th:name="company_id" th:value="${cid}"/>
- <input type="hidden" id="diagnostic_score" th:name="diagnostic_score" th:value="${cj}"/>
- <input type="hidden" id="startVal" th:name="satisfaction_score"/>
- <input type="hidden" id="id" th:name="id" th:value="${diagnosticReport.id}"/>
- </form>
- <div class="project-list">
- <div class="project-list-title">根据您当前的诊断结果,系统推荐您申报如下项目:</div>
- <div>
- <div class="project-list-item" th:each="item,iterStat: ${rpList}">
- <div>
- <span class="fsx">分数线:[[${item.minjf}]]</span>
- <span class="project-name">[[${item.title}]]</span>
- </div>
- <div class="hdpf">
- <div class="hdpf-active">诊断得分:[[${item.sumzdcj}]]分</div>
- </div>
- <div class="clearfix">
- <div class="project-img"><img th:src="${item.icon}" alt=""></div>
- <div class="project-item-text">
- <div>
- [[${item.msg}]]
- </div>
- <p class="project-view-more"><a th:href="@{'/policy/toProjectDetail/'+${cid}+'-'+${item.bno}}" class="ft-color-blue">了解详情>></a></p>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!--页底-->
- <div th:replace="~{home/common/footer :: footer}"></div>
- <script th:inline="javascript">
- $(function(){
- //头部导航栏
- $("li[role='presentation']").removeClass();
- var id = [[${navigation_id}]];
- $("#" + id).parent().attr("class", "active");
- var pagePath = $("meta[name='_ctx']").attr("content");
- pagePath = pagePath.substring(0, pagePath.length - 1);
- var type = "", criteria = "0", isinvalid = "0";
- layui.use('element', function () {
- var element = layui.element; //导航的hover效果、二级菜单等功能,需要依赖element模块
- });
- // 搜索
- $("#keywordSearch").on("click",function () {
- var keywordVal = encodeURI($("#keyWord").val());
- window.location.href = pagePath +"/home/policySearchList?lkey="+keywordVal;
- });
- console.log([[${rpList}]]);
- })
- </script>
- </body>
- </html>
|