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.
69 lines
4.0 KiB
69 lines
4.0 KiB
<!-- 模块:底部 -->
|
|
<footer class="site-footer section__wrap" id="footer" data-header-dark>
|
|
<div class="site-footer__inner">
|
|
<div class="site-footer__main">
|
|
<div class="site-footer__brand">
|
|
<div class="site-footer__logo" aria-label="睿能科技">
|
|
<img src="{hcTaglib:setting name='dark_logo' type='2' /}" alt="RAYNEN 睿能科技" width="252" height="26" />
|
|
</div>
|
|
<p class="site-footer__stock">股票代码: 603933</p>
|
|
<p class="site-footer__quote" aria-label="股票行情" data-stock-quote data-stock-code="603933">
|
|
<span class="site-footer__quote-price" data-stock="price" style="{$priceColor}">{$stockInfo.price}</span>
|
|
<span class="site-footer__quote-unit" data-stock="unit" style="{$priceColor}">元</span>
|
|
<span class="site-footer__quote-change" data-stock="change" style="{$priceColor}">{$stockInfo.change} {$stockInfo.changePercent}</span>
|
|
</p>
|
|
<p class="site-footer__follow">关注我们:</p>
|
|
<div class="site-footer__qrs">
|
|
<div class="site-footer__qr">
|
|
<img src="{hcTaglib:setting name='wechat_code' type='2' /}" alt="官方微信" />
|
|
<span>官方微信</span>
|
|
</div>
|
|
<div class="site-footer__qr">
|
|
{php}$ui_social_channel = uiId('social_channel');{/php}
|
|
{hcTaglib:category id="$ui_social_channel" item="vo" field="*"}
|
|
<img src="{$vo.thumbnail.url ?? ''}" alt="官方视频号" />
|
|
{/hcTaglib:category}
|
|
<span>官方视频号</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<nav class="site-footer__cols" aria-label="底部导航">
|
|
{php}
|
|
$ui_nav_footer = uiId('nav_footer');
|
|
$ui_product = uiId('product');
|
|
{/php}
|
|
{hcTaglib:nav cid="$ui_nav_footer" max-level="2" item="vo" name="hc_nav" sort="sort asc"}
|
|
{php}
|
|
$ft_is_product = ((int)($vo['category_id'] ?? 0) === $ui_product);
|
|
{/php}
|
|
<div class="site-footer__col">
|
|
<div class="site-footer__colTitle">{$vo.title}</div>
|
|
<div class="site-footer__links">
|
|
{volist name="$vo.children" id="child"}
|
|
{php}
|
|
$ft_href = $child['href'] ?? '';
|
|
$ft_child_cid = (int)($child['category_id'] ?? 0);
|
|
// 产品列:与头部一致,拼接 cat=product-control-{栏目ID}
|
|
if ($ft_is_product && $ft_child_cid > 0 && $ft_href !== '') {
|
|
$ft_href .= (strpos($ft_href, '?') !== false ? '&' : '?') . 'cat=product-control-' . $ft_child_cid;
|
|
}
|
|
{/php}
|
|
<a href="{$ft_href}">{$child.title}</a>
|
|
{/volist}
|
|
</div>
|
|
</div>
|
|
{/hcTaglib:nav}
|
|
</nav>
|
|
</div>
|
|
<div class="site-footer__bottom">
|
|
<p class="site-footer__copyright">Copyright 2026 {hcTaglib:setting name="company_name" type="1" /} 版权所有 | {hcTaglib:setting name="icp" type="2" /} | <img
|
|
class="site-footer__gongan" src="/themes/dist_static/static/images/gongan-DdFBmJbc.png" alt="" /> {hcTaglib:setting name="gwa" type="2" /}</p>
|
|
<div class="site-footer__legal">
|
|
<!-- <a href="{:getMuiLangUrl('/sitemap.html')}">网站地图</a> -->
|
|
<!-- <a href="{:getMuiLangUrl('/privacy.html')}">隐私声明</a> -->
|
|
<a href="javascript:;">网站地图</a>
|
|
<a href="javascript:;">隐私声明</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|