111 lines
4.1 KiB
HTML
Executable File
111 lines
4.1 KiB
HTML
Executable File
<div class="mt80"></div>
|
|
|
|
<section class="footer">
|
|
<div class="wrap">
|
|
<div class="left">
|
|
<div class="logo"><a href="/"><img src="__STATIC__/web/img/logo.png" alt=""></a></div>
|
|
<ul class="email">
|
|
<li>
|
|
<img src="__STATIC__/web/img/email.png" alt="">
|
|
<div class="text">
|
|
<h3>总经理信箱</h3>
|
|
<div class="st">{$extraBase['email'] ?? ''}</div>
|
|
</div>
|
|
</li>
|
|
|
|
<li>
|
|
<img src="__STATIC__/web/img/email.png" alt="">
|
|
<div class="text">
|
|
<h3>董事长信箱</h3>
|
|
<div class="st">{$extraBase['email2'] ?? ''}</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
|
|
<div class="tit">
|
|
<p>联系地址:{$extraBase['addr'] ?? ''}</p>
|
|
<p>联系电话:{$extraBase['tel'] ?? ''}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="right">
|
|
<div class="list">
|
|
<h3><a href="/about.html">走进产投</a></h3>
|
|
<a href="/about.html#into1">集团简介</a>
|
|
<a href="/about.html#into2">集团领导</a>
|
|
<a href="/about.html#into3">发展战略</a>
|
|
<a href="/about.html#into4">集团荣誉</a>
|
|
<a href="/about.html#into5">组织架构</a>
|
|
<a href="/about.html#into6">业务板块</a>
|
|
</div>
|
|
|
|
<div class="list">
|
|
<h3><a href="/news.html">新闻动态</a></h3>
|
|
<a href="/news.html?category_id=25">集团要闻</a>
|
|
<a href="/news.html?category_id=26">媒体报道</a>
|
|
<a href="/news.html?category_id=27">经营动态</a>
|
|
<a href="/news.html?category_id=28">子公司动态</a>
|
|
</div>
|
|
|
|
<div class="list">
|
|
<h3><a href="/djqt.html">党建群团</a></h3>
|
|
<a href="/djqt.html?category_id=10">党建工作</a>
|
|
<a href="/djqt.html?category_id=11">工会群团</a>
|
|
</div>
|
|
|
|
<div class="list">
|
|
<h3><a href="/ljct.html">廉洁产投</a></h3>
|
|
<a href="/ljct.html?category_id=12">工作动态</a>
|
|
<a href="/ljct.html?category_id=13">廉洁教育</a>
|
|
<a href="/ljct.html?category_id=14">警钟长鸣</a>
|
|
<a href="/ljct.html?category_id=15">在线举报</a>
|
|
</div>
|
|
|
|
<div class="list">
|
|
<h3><a href="/info.html">信息公开</a></h3>
|
|
<a href="/info.html?category_id=16">人才招揽</a>
|
|
<a href="/info.html?category_id=17">合作交流</a>
|
|
<a href="/info.html?category_id=18">招采平台</a>
|
|
<a href="/info.html?category_id=19">信息公布</a>
|
|
</div>
|
|
|
|
<div class="list">
|
|
<h3><a href="/contact.html">联系我们</a></h3>
|
|
<a href="/contact.html#company-info">联系方式</a>
|
|
<a href="/contact.html#maps">联系地图</a>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer-bottom">
|
|
<a href="https://beian.miit.gov.cn/" target="_blank">
|
|
{$extraBase['recordation'] ?? ''}
|
|
</a>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="back">
|
|
<img src="__STATIC__/web/img/back.png" alt="">
|
|
</div>
|
|
|
|
<script>
|
|
$('.submit-btn').on('click', function () {
|
|
let input = $(this).parent().children('input');
|
|
let keyword = input.val();
|
|
let controller = input.data('controller');
|
|
|
|
console.log(controller, 'cccc');
|
|
if (['News', 'Info', 'Djqt', 'Ljct'].indexOf(controller) >= 0) {
|
|
let url = window.location.href;
|
|
let p = '?';
|
|
if (url.indexOf('?') > 0) {
|
|
p = '&';
|
|
}
|
|
window.location.href = window.location.href + p + 'keyword=' + keyword;
|
|
} else {
|
|
window.location.href = '/news.html?keyword=' + keyword;
|
|
}
|
|
|
|
});
|
|
</script> |