You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
3.5 KiB
109 lines
3.5 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="__TMPL__/static/css/layui.css" />
|
|
<!-- 通用 -->
|
|
{include file="common/head" /}
|
|
<!-- 当前 -->
|
|
<link rel="stylesheet" href="__TMPL__/static/css/mixin.css" />
|
|
<link rel="stylesheet" href="__TMPL__/static/css/message.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<!-- header start -->
|
|
{include file="common/header" /}
|
|
<!-- header end -->
|
|
<div class="bannerList">
|
|
<div class="img">
|
|
<img src="__TMPL__/static/images/zoujin/img-1.jpg" alt="" />
|
|
</div>
|
|
<div class="w1280">
|
|
<div class="bannerTitle">走进东亚</div>
|
|
<div class="bannerTips">东亚财富,智讯共享</div>
|
|
</div>
|
|
</div>
|
|
<div class="tabs-head">
|
|
<div class="w1280">
|
|
<ul>
|
|
{hcTaglib:subcategory pid="7" item="vo" field="id,title" sort="sort asc"}
|
|
<li class="{$current_cate['id']==$vo.id?'active':''}"><a href="{:hcUrl('list/index',['id'=>$vo.id])}" >{$vo.title}</a></li>
|
|
{/hcTaglib:subcategory}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="tabs-container">
|
|
<div class="message-list w1280">
|
|
{hcTaglib:content cid="$current_cate['id']" moduleId="1" limit="100" item="vo" field="id,title,thumbnail" sort="sort asc,id asc"}
|
|
<div class="tab-box">
|
|
<img src="{$vo.thumbnail.url}" />
|
|
<div class="title">{$vo.title}</div>
|
|
<a href="{:hcUrl('detail/index',['id'=>$vo.id,'cid'=>$current_cate['id']])}" class="more">
|
|
<p>立即查看</p>
|
|
<div class="bg"></div>
|
|
</a>
|
|
</div>
|
|
{/hcTaglib:content}
|
|
</div>
|
|
</div>
|
|
<!-- footer start-->
|
|
{include file="common/footer" /}
|
|
<!-- footer end -->
|
|
<!-- 通用 -->
|
|
{include file="common/foot" /}
|
|
<!-- 当前 -->
|
|
<script src="__TMPL__/static/js/layui.js"></script>
|
|
<script>
|
|
// banner
|
|
var swiper = new Swiper('.indexBannerSwiper', {
|
|
pagination: {
|
|
el: '.indexBannerSwiper .swiper-pagination'
|
|
}
|
|
})
|
|
// tab 切换
|
|
$('.indexBlock2 .w1280 .right .top .tab a').click(function () {
|
|
$(this).addClass('on')
|
|
$('.indexBlock2 .w1280 .right .content .list')
|
|
.eq($(this).inde())
|
|
.fadeIn()
|
|
})
|
|
// 日历
|
|
layui.use(function () {
|
|
var layer = layui.layer
|
|
var laydate = layui.laydate
|
|
laydate.render({
|
|
elem: '#ID-laydate-static-1',
|
|
position: 'static',
|
|
mark: {
|
|
'2023-9-15': ''
|
|
}
|
|
})
|
|
})
|
|
// 服务hover
|
|
$('.indexBlock5 .w1280 .content .list').hover(
|
|
function () {
|
|
$(this).children('.posi').stop().fadeOut()
|
|
$(this).children('.posiOn').stop().fadeIn()
|
|
$(this).children('.posiOn').css('display', 'flex')
|
|
},
|
|
function () {
|
|
$(this).children('.posi').stop().fadeIn()
|
|
$(this).children('.posiOn').stop().fadeOut()
|
|
}
|
|
)
|
|
// 走进东亚 视频
|
|
$('.indexBlock6 .w1280 .right .player').click(function () {
|
|
$('.windowVideo').stop().fadeIn()
|
|
setTimeout(function () {
|
|
$('#indexBlock6video')[0].play()
|
|
}, 500)
|
|
})
|
|
$('.windowVideo .content .close').click(function () {
|
|
$('.windowVideo').stop().fadeOut()
|
|
$('#indexBlock6video')[0].pause()
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|