2 Commits

Author SHA1 Message Date
685cd53b1a refactor: mobile header
All checks were successful
Gitea Actions Official-website / deploy-dev (push) Successful in 4s
2026-04-08 11:20:54 +08:00
2c3e309d2a fix: pc header 2026-04-08 11:20:39 +08:00
4 changed files with 804 additions and 860 deletions

View File

@@ -6,6 +6,9 @@ return [
'产品列表' => 'Products', '产品列表' => 'Products',
'搜索' => 'Search', '搜索' => 'Search',
'搜索历史' => 'Search History', '搜索历史' => 'Search History',
'请输入搜索关键词' => 'Please enter a search keyword',
'搜索记录' => 'Search History',
'清空' => 'Clear',
'请择地区' => 'SELECT A REGION', '请择地区' => 'SELECT A REGION',
'产品' => 'Product', '产品' => 'Product',
'联系方式' => 'Contact', '联系方式' => 'Contact',

File diff suppressed because it is too large Load Diff

View File

@@ -1065,7 +1065,7 @@
</div> </div>
{if condition="!empty($vo.recommends)"} {if condition="!empty($vo.recommends)"}
<div class="header-dropdown-products"> <div class="header-dropdown-products">
{volist name="$vo.recommends" id="recommend"} {volist name="vo.recommends" id="recommend"}
<div class="header-product-card"> <div class="header-product-card">
<a href="{$recommend.link}"> <a href="{$recommend.link}">
<div class="header-product-img"> <div class="header-product-img">
@@ -1083,7 +1083,7 @@
</div> </div>
{/if} {/if}
{if condition="!empty($header_navigation)"} {if condition="!empty($header_navigation)"}
{volist name="$header_navigation" id="nav"} {volist name="header_navigation" id="nav"}
<div class="header-nav-item"> <div class="header-nav-item">
{if condition="empty($nav.children)"} {if condition="empty($nav.children)"}
<div class="header-nav-title"> <div class="header-nav-title">
@@ -1093,7 +1093,7 @@
<div class="header-nav-title">{$nav.name}</div> <div class="header-nav-title">{$nav.name}</div>
<div class="header-dropdown"> <div class="header-dropdown">
<div class="header-dropdown-content1"> <div class="header-dropdown-content1">
{volist name="$nav.children" id="child"} {volist name="nav.children" id="child"}
<div class="header-product-card-1"> <div class="header-product-card-1">
<a href="{$child.link}" target="{$child.blank==1?'_blank':'_self'}"> <a href="{$child.link}" target="{$child.blank==1?'_blank':'_self'}">
<div class="header-product-img-1"> <div class="header-product-img-1">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB