3 Commits

Author SHA1 Message Date
239bb64e9a fix: pc 去除多条console.log 2025-06-27 09:38:53 +08:00
774954c70b fix: mobile 产品搜索 2025-06-27 09:37:50 +08:00
a3f8668b60 fix: mobile 底部导航 2025-06-27 09:37:32 +08:00
3 changed files with 3 additions and 3 deletions

View File

@@ -30,7 +30,6 @@
{else/}
<div style="text-align: center; padding: 10%;">暂无数据</div>
{/notempty}
<div style=" text-align: center;padding: 10%;">暂无数据</div>
</div>
</div>
{/block}

View File

@@ -18,7 +18,9 @@
{notempty name="fn.children"}
{volist name="fn.children" id="fnc"}
<p>
<a href="{$fnc.link}" target="_blank" class="inline-block link-faded break-all">{$fnc.name}</a>
<a href="{$fnc.link}" {eq name="fnc.link" value="1"}target="_blank"{/eq} class="inline-block link-faded break-all">
{$fnc.name}
</a>
</p>
{/volist}
{/notempty}

View File

@@ -101,7 +101,6 @@
var windowHeight = $(window).height();
// 监听滚动事件
$(window).scroll(function() {
console.log($(this).scrollTop(),windowHeight)
// 检查滚动距离是否超过一屏幕高度
if ($(this).scrollTop() > windowHeight) {
// 如果超过,显示返回顶部按钮