|
@@ -0,0 +1,239 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="zh-CN">
|
|
|
+<head>
|
|
|
+ {{include "pc/common/meta.html" .}}
|
|
|
+ {{include "pc/common/tdk.html" .}}
|
|
|
+ {{include "pc/common/link.html" .}}
|
|
|
+ <link href='{{Cdn}}/jyseo/css/tags-lib.css?v={{Msg "version"}}' rel="stylesheet" type="text/css" />
|
|
|
+ <link href='{{Cdn}}/jyseo/css/index.css?v={{Msg "version"}}' rel="stylesheet" type="text/css" />
|
|
|
+ <link href='{{Cdn}}/jyseo/css/keywordPinyin.css?v={{Msg "version"}}' rel="stylesheet"/>
|
|
|
+ <script src="https://cdn-common.jianyu360.com/cdn/lib/jquery/3.6.0/jquery.min.js"></script>
|
|
|
+ <script src="/common-module/public/head.js"></script>
|
|
|
+ <style>
|
|
|
+ .hot-keyword{
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ }
|
|
|
+ .hot-keyword .bottom-hot{
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ margin-top: 10px;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
+ .hot-keyword .bottom-hot .cms-link {
|
|
|
+ margin-right: 8px;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #686868;
|
|
|
+ text-decoration: none;
|
|
|
+ }
|
|
|
+ .hot-keyword .bottom-hot .hot-divider {
|
|
|
+ margin: 0 12px;
|
|
|
+ display: inline-block;
|
|
|
+ width: 1px;
|
|
|
+ height: 14px;
|
|
|
+ background: #E0E0E0;
|
|
|
+ }
|
|
|
+ .searchname{
|
|
|
+ width: 490px!important;
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+</head>
|
|
|
+<body class="bidsearch-page">
|
|
|
+<div class="page-container">
|
|
|
+ <header class="page-header">
|
|
|
+ <!-- 顶部导航 -->
|
|
|
+ {{include "pc/common/header.html" .}}
|
|
|
+ </header>
|
|
|
+ <main class="page-main page-main-stype page-key-list" style="margin-bottom: unset">
|
|
|
+
|
|
|
+ <section id="searchInner">
|
|
|
+ <!--搜索头部 START-->
|
|
|
+ <div class="searchHeader">
|
|
|
+ <div class="w searchHeader-container">
|
|
|
+ <!--搜索-->
|
|
|
+ <div class="searchInput clearfix hot-keyword">
|
|
|
+ <form id="zbSeatchT" class="clearfix">
|
|
|
+ <input class="searchname" autocomplete="off" type="search" id="searchinput" value="" name="keywords" placeholder="{{.node.Name}}" />
|
|
|
+ <img src="{{Cdn}}/images/pc_20.png" id="t-clear" class="j-clearicon" style="display: none;">
|
|
|
+ <input type="submit" value="搜索" />
|
|
|
+ </form>
|
|
|
+ <div class="bottom-hot">
|
|
|
+ <div>热门搜索</div>
|
|
|
+ <i class="hot-divider"></i>
|
|
|
+ <div>
|
|
|
+ {{range $k, $v := .node.HotSearch}}
|
|
|
+ <a class="cms-link" href="/jylab/supsearch/index.html?keywords={{$v}}&selectType=title&searchGroup=1">{{$v}}</a>
|
|
|
+ {{end}}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!--搜索头部 END-->
|
|
|
+
|
|
|
+ <!--招标搜索页面 START-->
|
|
|
+ <div class="searchControl">
|
|
|
+ <!--招标搜索列表内容-->
|
|
|
+ <div class="seaTender-inner w">
|
|
|
+ <!--招标tab切换-->
|
|
|
+ <div class="tabTitle clearfix flex-dev">
|
|
|
+ <h1 class="left-title">{{.node.Name}}招标信息</h1>
|
|
|
+ </div>
|
|
|
+ <!--tab切换内容-->
|
|
|
+ <div class="tabContainer" id="allnews">
|
|
|
+ <!--全文搜索 列表-->
|
|
|
+ <div class="lucene">
|
|
|
+ <ul>
|
|
|
+ {{range $k,$v:=.list}}
|
|
|
+ <li>
|
|
|
+ <div class="liLuceneList">
|
|
|
+ <div class="luce-left">
|
|
|
+ <em>{{$k | plus 1}}.</em>
|
|
|
+ <div class="left-title">
|
|
|
+ <a href="{{$v.Url}}" target="_blank">{{$v.Title}}</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="luce-right">
|
|
|
+ {{if $v.Area}}<span class="j-tag list-item-tags">{{$v.Area}}</span>{{end}}
|
|
|
+ {{if $v.Industry}}<span class="j-tag list-item-tags">{{$v.Industry}}</span>{{end}}
|
|
|
+ {{if $v.Subtype}}<span class="j-tag list-item-tags">{{$v.Subtype}}</span>{{end}}
|
|
|
+ {{if $v.Price}}<span class="j-tag list-item-tags" data-format-money={{$v.Price}}>{{$v.Price}}</span>{{end}}
|
|
|
+ {{if $v.PublishTime}}<span class="list-item-times">{{$v.PublishTime | date "Y-m-d"}}</span>{{end}}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </li>
|
|
|
+ {{end}}
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="hasNoData" style="display: none;">
|
|
|
+ <img src="{{Cdn}}/images/pc_12.png" id="hasNoData">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!--招标搜索页面 END-->
|
|
|
+ </section>
|
|
|
+ </main>
|
|
|
+ <footer class="page-footer">
|
|
|
+ <link rel="stylesheet" href="{{Cdn}}/jyseo/css/pc-ad-bottom.css?v={{Msg "version"}}">
|
|
|
+ <div style="display: none;" data-nologin-show class="pc-ad-bottom" id="bottom-sticky-ad">
|
|
|
+ <div class="ad-bottom-main">
|
|
|
+ <img class="ad-bottom-img" src='{{Cdn}}/jyseo/image/debrisProduct/{{.node.Code}}-pc.png?v={{Msg "version"}}' alt="{{.node.Name}}">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- 引入css、js外链时 资源名称不能以ad开头,会被浏览器广告插件拦截 -->
|
|
|
+ <script src="{{Cdn}}/jyseo/js/pc-ad-bottom.js?v={{Msg "version"}}"></script>
|
|
|
+ {{include "pc/common/footer.html" .}}
|
|
|
+ </footer>
|
|
|
+</div>
|
|
|
+<script src="https://cdn-common.jianyu360.com/cdn/lib/bootstrap/4.5.0/bootstrap.min.js"></script>
|
|
|
+<script src='{{Cdn}}/jyseo/js/common.js?v={{Msg "version"}}'></script>
|
|
|
+<script src='{{Cdn}}/jyseo/js/area-stype-list-pagination.js?v={{Msg "version"}}'></script>
|
|
|
+<script src='{{Cdn}}/jyseo/js/index.js?v={{Msg "version"}}'></script>
|
|
|
+<script>
|
|
|
+ $(function(){
|
|
|
+ $("#t-clear").click(function() {
|
|
|
+ $("#t-clear").hide();
|
|
|
+ $("#searchinput").val("").focus();
|
|
|
+ })
|
|
|
+ $('#zbSeatchT').on('submit', function(e) {
|
|
|
+ e.preventDefault()
|
|
|
+ var keywords = $('#searchinput').val()
|
|
|
+ location.href = '/jylab/supsearch/index.html?keywords=' + keywords
|
|
|
+ })
|
|
|
+
|
|
|
+ })
|
|
|
+ //
|
|
|
+ function beforeSubmit(flag) {
|
|
|
+ var selectIndustrys = "";
|
|
|
+ var thisText = "";
|
|
|
+ $(".industry-content .active").each(function() {
|
|
|
+ if ($(this).attr("id") == "induAll") {
|
|
|
+ return true;
|
|
|
+ } else if ($(this).hasClass("active") && $(this).hasClass("parent-node")) {
|
|
|
+ $(this).nextUntil(".diver").each(function() {
|
|
|
+ thisText = $(this).attr("data-value");
|
|
|
+ if (selectIndustrys != "") {
|
|
|
+ selectIndustrys += ",";
|
|
|
+ }
|
|
|
+ selectIndustrys += thisText;
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ thisText = $(this).attr("data-value");
|
|
|
+ if (selectIndustrys != "") {
|
|
|
+ selectIndustrys += ",";
|
|
|
+ }
|
|
|
+ selectIndustrys += thisText;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ $("#zbSeatchT [name='industry']").val(selectIndustrys);
|
|
|
+
|
|
|
+ var selectMinPrices = $(".PriceInput [name='minprice']").val();
|
|
|
+ var selectMaxPrices = $(".PriceInput [name='maxprice']").val();
|
|
|
+ $("#zbSeatchT [name='minprice']").val(selectMinPrices);
|
|
|
+ $("#zbSeatchT [name='maxprice']").val(selectMaxPrices);
|
|
|
+ var publishtime = null;
|
|
|
+ var timeslot = getInputTime().join("_");
|
|
|
+ if ($(".timerInput").hasClass("active")) {
|
|
|
+ if (timeslot != "_") {
|
|
|
+ $("#zbSeatchT [name='publishtime']").val(timeslot);
|
|
|
+ } else {
|
|
|
+ $("#zbSeatchT [name='publishtime']").val("");
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ publishtime = $(".timer .active").attr("data-value");
|
|
|
+ if (typeof (publishtime) != "undefined") {
|
|
|
+ $("#zbSeatchT [name='publishtime']").val(publishtime);
|
|
|
+ } else {
|
|
|
+ $("#zbSeatchT [name='publishtime']").val("");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (timeslot != "_") {
|
|
|
+ $("#zbSeatchT [name='timeslot']").val(timeslot);
|
|
|
+ } else {
|
|
|
+ $("#zbSeatchT [name='timeslot']").val("");
|
|
|
+ }
|
|
|
+
|
|
|
+ var selectAreas = "";
|
|
|
+ $(".region-content .active:not(.parent-node)").each(function() {
|
|
|
+ var thisText = $(this).text();
|
|
|
+ if (thisText != "全国") {
|
|
|
+ if (selectAreas != "") {
|
|
|
+ selectAreas += ",";
|
|
|
+ }
|
|
|
+ selectAreas += thisText;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ $("#zbSeatchT [name='area']").val(selectAreas);
|
|
|
+
|
|
|
+ var selectSubTypes = "";
|
|
|
+ $(".info-content .active:not(.parent-node)").each(function() {
|
|
|
+ if ($(this).attr("id") == "whole" || $(this).attr("id") == "infoBtn") {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ var thisText = $(this).attr("data-value");
|
|
|
+ if (selectSubTypes != "") {
|
|
|
+ selectSubTypes += ",";
|
|
|
+ }
|
|
|
+ selectSubTypes += thisText;
|
|
|
+ });
|
|
|
+ $("#zbSeatchT [name='subtype']").val(selectSubTypes);
|
|
|
+ if (flag != "F") {
|
|
|
+ $("#zbSeatchT [type='submit']").click();
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ //
|
|
|
+ function noIn(p){
|
|
|
+ var thisId = $(p).attr("dataId");
|
|
|
+ dataId = thisId;
|
|
|
+ if(!loginflag){//未登录详情
|
|
|
+ window.open("/nologin/content/"+thisId+".html");
|
|
|
+ }else{
|
|
|
+ window.open("/article/content/"+thisId+".html");
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+</body>
|
|
|
+</html>
|