|
@@ -569,7 +569,7 @@ function infoListCss(){
|
|
|
</div>
|
|
|
<div class="jy_renzheng">
|
|
|
<div class="jy_otherlink"><a href="/" target="_bank">剑鱼标讯</a>|<a href="/front/subscribe.html">招标订阅</a>|<a href="/jylab/supsearch/index.html">招标搜索</a>|<a data-toggle="modal" data-target="#bidcommunity">招标社区</a>|<a href="/jyblog/index.html" target="_bank">剑鱼标讯博客</a>|<a href="/front/busicooperation.html" target="_bank">商务合作</a>|<a href="/front/advservices.html" target="_bank">广告服务</a>|<a href="/front/aboutus.html">关于我们</a>|<a href="http://www.qmx.top" target="_bank">企明星</a>|<a href="http://www.qmx.top/front/entCommunity.html" target="_bank">企业社区</a></div>
|
|
|
- <div style="color: #B9B9BB;" class="copyright" id="cpinfo">©2015-2020 jianyu360.com 版权所有 | <a style="color: inherit; font-size: inherit;" href="https://beian.miit.gov.cn/" target="_blank">京ICP备14030217号-3</a></div>
|
|
|
+ <div style="color: #B9B9BB;" class="copyright" id="cpinfo">©2015-2021 jianyu360.com 版权所有 | <a style="color: inherit; font-size: inherit;" href="https://beian.miit.gov.cn/" target="_blank">京ICP备14030217号-3</a></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div style="position:relative" class="jy_imgright">
|
|
@@ -591,7 +591,7 @@ function infoListCss(){
|
|
|
</span>
|
|
|
</form>
|
|
|
<div class="jy_otherlink"><a href="/" target="_bank">剑鱼标讯</a>|<a href="/front/subscribe.html">招标订阅</a>|<a href="/jylab/supsearch/index.html">招标搜索</a>|<a data-toggle="modal" data-target="#bidcommunity">招标社区</a>|<a href="/jyblog/index.html" target="_bank">剑鱼标讯博客</a>|<a href="/front/busicooperation.html" target="_bank">商务合作</a>|<a href="/front/advservices.html" target="_bank">广告服务</a>|<a href="/front/aboutus.html">关于我们</a>|<a href="http://www.qmx.top" target="_bank">企明星</a>|<a href="http://www.qmx.top/front/entCommunity.html" target="_bank">企业社区</a></div>
|
|
|
- <div class="copyright">©2015-2020 jianyu360.com 版权所有 | <a style="color: inherit; font-size: inherit;" href="https://beian.miit.gov.cn/" target="_blank">京ICP备14030217号-3</a></div>
|
|
|
+ <div class="copyright">©2015-2021 jianyu360.com 版权所有 | <a style="color: inherit; font-size: inherit;" href="https://beian.miit.gov.cn/" target="_blank">京ICP备14030217号-3</a></div>
|
|
|
</div>
|
|
|
<div class="j-bottom-b">
|
|
|
<img src="/front/share/RV8=" alt="剑鱼标讯微信公众号"><br>
|
|
@@ -604,21 +604,36 @@ function infoListCss(){
|
|
|
<script type="text/javascript">
|
|
|
// ajax部分匿名函数自执行,防止泄露全局变量
|
|
|
$(function(){
|
|
|
- var host = location.host
|
|
|
- var copyrightMap = {
|
|
|
- com: '京ICP备14030217号-3',
|
|
|
- cn: '京ICP备2021020018号-1'
|
|
|
- }
|
|
|
- // 动态设置copyright
|
|
|
- var copyright = ''
|
|
|
- if (host.indexOf('jianyu360.com') >= 0) {
|
|
|
- copyright = '©2015-' + new Date().getFullYear() + ' jianyu360.com 版权所有 | ' + '<a style="color: inherit; font-size: inherit;" href="https://beian.miit.gov.cn/" target="_blank">' + copyrightMap.com + '</a>'
|
|
|
- } else if (host.indexOf('jianyu360.cn') >= 0) {
|
|
|
- copyright = '©2015-' + new Date().getFullYear() + ' jianyu360.cn 版权所有 | ' + '<a style="color: inherit; font-size: inherit;" href="https://beian.miit.gov.cn/" target="_blank">' + copyrightMap.cn + '</a>'
|
|
|
- } else {
|
|
|
- copyright = '©2015-' + new Date().getFullYear() + ' jianyu360.com 版权所有 | ' + '<a style="color: inherit; font-size: inherit;" href="https://beian.miit.gov.cn/" target="_blank">' + copyrightMap.com + '</a>'
|
|
|
- }
|
|
|
- $('.copyright').html(copyright)
|
|
|
+ // 动态设置copyright
|
|
|
+ function setCopyRightForBottom (url) {
|
|
|
+ var host = url || location.host
|
|
|
+ var nowCopyRightInfo = {
|
|
|
+ rule: '',
|
|
|
+ icp: ''
|
|
|
+ }
|
|
|
+ var copyRightMap = [
|
|
|
+ {
|
|
|
+ rule: 'jianyu360.com',
|
|
|
+ icp: '京ICP备14030217号-3'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ rule: 'jianyu360.cn',
|
|
|
+ icp: '京ICP备2021020018号-1'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ rule: 'jianyubiaoxun.com',
|
|
|
+ icp: '京ICP备14030217号-8'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ copyRightMap.forEach(function (v) {
|
|
|
+ if (host.indexOf(v.rule) !== -1) {
|
|
|
+ nowCopyRightInfo = v
|
|
|
+ }
|
|
|
+ })
|
|
|
+ var copyright = '©2015-' + new Date().getFullYear() + ' ' +nowCopyRightInfo.rule+ ' 版权所有 | ' + '<a style="color: inherit; font-size: inherit;" href="https://beian.miit.gov.cn/" target="_blank">' + nowCopyRightInfo.icp + '</a>'
|
|
|
+ $('.copyright').html(copyright)
|
|
|
+ }
|
|
|
+ setCopyRightForBottom()
|
|
|
|
|
|
$(".j-bottom .jy_province font").click(function(){
|
|
|
var scope = $(this).text();
|