baodinzhihui/view/public/footer.html

76 lines
3.0 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<div class="home-box6 w-100">
<div class="w-1200"><img src="__IMG__/ho6_img.png" ></div>
</div>
<div class="foot-box w-100">
<div class="w-1200">
<div class="top-box w-100 ">
<ul>
<span>关于我们</span>
<li><a href="{:url('/page')->suffix(false)}/2.html#key2">公司介绍</a></li>
<li><a href="{:url('/page')->suffix(false)}/2.html#key4">荣誉资质</a></li>
<li><a href="{:url('/page')->suffix(false)}/2.html#key1">团队风采</a></li>
<li><a href="{:url('/page')->suffix(false)}/2.html#key3">设备展示</a></li>
</ul>
<ul>
<span>产品中心</span>
{php}
$product_children=\app\model\Category::alias('c')
->leftJoin('model m', 'c.model_id=m.id')
->field('c.*, m.manager, m.template, m.name as modelName')
->where('c.parent_id', 5)
->order('c.sort','asc')
->select()
->toArray();
{/php}
{foreach $product_children as $menu_children}
<li><a href="{:getUri($menu_children)}">{$menu_children["title"]}</a></li>
{/foreach}
</ul>
<ul>
<span>定制服务</span>
<li><a href="{:url('/page')->suffix(false)}/6.html">产品定制</a></li>
</ul>
<ul>
<span>新闻中心</span>
{php}
$product_children=\app\model\Category::alias('c')
->leftJoin('model m', 'c.model_id=m.id')
->field('c.*, m.manager, m.template, m.name as modelName')
->where('c.parent_id', 9)
->order('c.sort','asc')
->select()
->toArray();
{/php}
{foreach $product_children as $menu_children}
<li><a href="{:getUri($menu_children)}">{$menu_children["title"]}</a></li>
{/foreach}
</ul>
<ul>
<span>案例展示</span>
<li><a href="{:url('/page')->suffix(false)}/16.html">案例展示</a></li>
</ul>
<ul>
<span>联系我们</span>
<li>{$system.company_name}</li>
<li>地址:{$system.company_addr}</li>
<li>电话:{$system.company_tel}</li>
<li>邮箱:{$system.email}</li>
<li>QQ{$system.qq}</li>
</ul>
<ul>
<span>扫一扫</span>
<li>微信公众号</li>
<li><img src="__IMG__/ewm_1.png" ></li>
</ul>
</div>
<div class="lower-box w-100">Copyright © 2020 All Rights Reserved 版权所有:{$system.company_name} 备案号:{$system.company_copy} </div>
</div>
</div>
<script>
layui.use(['layer', 'form', 'element'], function(){
var layer = layui.layer,form = layui.form,element = layui.element;
});
</script>