|
@@ -19,7 +19,7 @@
|
|
|
.nav.green {background: linear-gradient(135deg, #a8e063, #56ab2f);}
|
|
|
.nav.black {background: linear-gradient(135deg, #292a3a, #536976);}
|
|
|
|
|
|
- .module-title .module-title-nav {width: 100%;}
|
|
|
+ .module-title .module-title-nav {width: 50%;}
|
|
|
#player-container-id{
|
|
|
width: 100%;
|
|
|
height: 0;
|
|
@@ -78,10 +78,11 @@
|
|
|
<!--新闻-->
|
|
|
<div class="module">
|
|
|
<div class="module-title font14">
|
|
|
- <a href="javascript:;" class="module-title-nav font14 active f-left" id="emer">引才动态</a>
|
|
|
+ <a href="javascript:;" class="module-title-nav font14 active f-left" data-id="emergency">引才动态</a>
|
|
|
+ <a href="javascript:;" class="module-title-nav font14 f-left" data-id="gongzhonghao">晋卫资讯</a>
|
|
|
<div class="clear"></div>
|
|
|
</div>
|
|
|
- <div class="mobile_index_news" id="emergency">
|
|
|
+ <div class="mobile_index_news module-box" id="emergency">
|
|
|
<ul>
|
|
|
<li>
|
|
|
<a href="{{route("mobile.health.attract.show")}}" rel="nofollow noopener noreferrer"><b>></b>{{cut_str("晋江市加快集聚高校毕业生来(留)晋创业就业的若干措施", 15, 0, '...')}}<span class="jc_rt">2024-10-18</span></a>
|
|
@@ -93,6 +94,15 @@
|
|
|
<div onclick="window.location='{{route("mobile.health.attract.index")}}';" style="text-align:center;height:.8rem;line-height:.8rem;background:#fff;">查看更多</div>
|
|
|
</ul>
|
|
|
</div>
|
|
|
+ <div class="mobile_index_news module-box" id="gongzhonghao" style="display: none;">
|
|
|
+ <ul>
|
|
|
+ <li>
|
|
|
+ <a href="https://mp.weixin.qq.com/s/A0fQqYtWMs3szvJxKUOPCg" rel="nofollow noopener noreferrer"><b>></b>{{cut_str("公众号文章1,公众号文章1,公众号文章1,公众号文章1,公众号文章1,", 15, 0, '...')}}<span class="jc_rt">2024-10-18</span></a>
|
|
|
+ <a href="https://mp.weixin.qq.com/s/A0fQqYtWMs3szvJxKUOPCg" rel="nofollow noopener noreferrer"><b>></b>{{cut_str("公众号文章2,公众号文章2,公众号文章2,公众号文章2,公众号文章2,", 15, 0, '...')}}<span class="jc_rt">2024-10-15</span></a>
|
|
|
+ </li>
|
|
|
+ <div onclick="window.location='{{route("mobile.health.gongzhonghao.index")}}';" style="text-align:center;height:.8rem;line-height:.8rem;background:#fff;">查看更多</div>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<!--新闻 end-->
|
|
|
@endsection
|
|
@@ -114,5 +124,12 @@
|
|
|
// var mySwiper = new Swiper('.swiper-container',{
|
|
|
// autoplay:3000,
|
|
|
// });
|
|
|
+ $('.module-title-nav').click(function() {
|
|
|
+ $('.module-title-nav').removeClass('active');
|
|
|
+ $(this).addClass('active');
|
|
|
+ let id = $(this).data('id');
|
|
|
+ $('.module-box').hide();
|
|
|
+ $('#'+id).show();
|
|
|
+ });
|
|
|
</script>
|
|
|
@endsection
|