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.
99 lines
3.9 KiB
99 lines
3.9 KiB
<!DOCTYPE html>
|
|
<!--[if IE 8]> <html class="ie ie8"> <![endif]-->
|
|
<!--[if IE 9]> <html class="ie ie9"> <![endif]-->
|
|
<!--[if gt IE 9]><!--> <html> <!--<![endif]-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{$menu.menu_seo_title|default=$site_seo_title} {$site_name}</title>
|
|
<meta name="keywords" content="{$menu.menu_seo_key|default=$site_seo_keywords}" />
|
|
<meta name="description" content="{$menu.menu_seo_des|default=$site_seo_description}">
|
|
{include file="public:head" /}
|
|
|
|
</head>
|
|
<body class="detailsbg">
|
|
<div class="contenter">
|
|
{include file="public:nav" /}
|
|
<!--banner开始-->
|
|
<div class="detailsbanner"></div>
|
|
<!--banner结束-->
|
|
<!--body开始-->
|
|
<div class="content modeub bodymb">
|
|
<!--mode left开始-->
|
|
<div class="modeleft ">
|
|
<div class="modelefttop modeub modever modeac modepc">
|
|
<div class="lefttutitle">{$parent.menu_name}</div>
|
|
<div class="leften">{$parent.menu_enname}</div>
|
|
</div>
|
|
<div class="modeleftmenu">
|
|
|
|
{foreach name="childs" id="vo"}
|
|
<div class=" modepc {if condition="isset($vo['childs']) and count($vo['childs']) neq 0"}subNav{/if} leftmenu modeub modeac {if condition="$menu_id eq $vo['id'] or (isset($vo['active']) and $vo['active'])"}modeleftmenuactive{/if} button bubble-right " onmouseout="removeMenuStyle_whsb(this)" onmousemove="addMenuStyle_whsb(this)">
|
|
<div class="modef1 jiesh" {if condition="isset($vo['menu_address']) and $vo['menu_address']"} {if condition="$vo['menu_address'] neq '#'"}onclick="javascript:window.location.href='{$vo.menu_address}'"{/if} {elseif condition="!isset($vo['childs'])" /}onclick="javascript:window.location.href='{:url(\'agency/index\',[\'kind\'=>$vo['id']])}'"{/if}>{$vo.menu_name}</div>
|
|
<div class="icon-huiseweixuanzhong iconfont modekuai"></div>
|
|
</div>
|
|
{if condition="isset($vo['childs']) and count($vo['childs']) neq 0"}
|
|
<div class="samlltitve navContent" style="{if condition="(isset($vo['active']) and $vo['active'])"}display:block;{/if}">
|
|
{volist name="vo['childs']" id="jo"}
|
|
<div class="zhidutitle {if condition="($menu_id eq $jo.id) or (isset($jo['active']) and $jo['active'])"}modeleftmenuactive{/if}" onclick="javascript:window.location.href='{$jo.jump}'" onmouseout="removeMenuStyle_b_whsb(this)" onmousemove="addMenuStyle_whsb(this)">{$jo.menu_name}</div>
|
|
{/volist}
|
|
</div>
|
|
{/if}
|
|
{/foreach}
|
|
|
|
</div>
|
|
</div>
|
|
<!--mode left结束-->
|
|
<!--mode right开始-->
|
|
<div class="modef1 moderight">
|
|
<div class="moderighttag modeub modeac">
|
|
<div class="tagtitle">{$current.menu_name}</div>
|
|
{if condition="isset($current['menu_enname']) and $current['menu_enname']"}
|
|
<div class="tagline">/</div>
|
|
<div class="tagtitleen">{$current.menu_enname}</div>
|
|
{/if}
|
|
|
|
</div>
|
|
{if condition="isset($current['menu_content']) and $current['menu_content']"}<div class="righttagdes modeub">{$current.menu_content}</div>{/if}
|
|
{__CONTENT__}
|
|
</div>
|
|
<!--mode right结束-->
|
|
</div>
|
|
<!--body结束-->
|
|
</div>
|
|
{include file="public:footer"/}
|
|
<script>
|
|
|
|
|
|
|
|
$(function() {
|
|
$(".subNav").click(function() {
|
|
$(this).next(".navContent").slideToggle(300).siblings(".navContent").slideUp(500);
|
|
})
|
|
})
|
|
|
|
function addMenuStyle_whsb(t){
|
|
$(t).addClass("modeleftmenuactive");
|
|
}
|
|
function removeMenuStyle_whsb(t){
|
|
if($(t).siblings(".modeleftmenuactive").length==1){
|
|
$(t).removeClass("modeleftmenuactive");
|
|
}
|
|
}
|
|
function removeMenuStyle_b_whsb(t){
|
|
if($(t).parent().prev().attr("class").indexOf("modeleftmenuactive")>=0){
|
|
if($(t).siblings(".modeleftmenuactive").length==1){
|
|
$(t).removeClass("modeleftmenuactive");
|
|
}
|
|
}else{
|
|
if($(t).siblings(".modeleftmenuactive").length==0){
|
|
$(t).removeClass("modeleftmenuactive");
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|