Browse Source

fix(solutions): 修复解决方案页面中其他分类链接为空的问题

- 将空链接替换为动态分类别名URL
- 确保链接正确指向相关分类页面
- 保持图片懒加载和其他现有功能不变
master
zhangf@suq.cn 3 weeks ago
parent
commit
65ddc5a126
  1. 2
      public/themes/website/1/zh/demo/solution2.html

2
public/themes/website/1/zh/demo/solution2.html

@ -205,7 +205,7 @@ $current_cate_id = $current_cate['id'] ?? 0;
<div class="sl2-more__grid">
{php}$others = getOtherCategoryCategoryId($current_cate['id'],$seller_id,5);{/php}
{volist name="others" id="vo"}
<a class="sl2-more__card" href="">
<a class="sl2-more__card" href="{$vo.alias ?? ''}">
<div class="sl2-more__media">
<img src="{$vo.thumbnail.url ?? ''}" alt="" width="400" height="300" loading="lazy" />
</div>

Loading…
Cancel
Save