From 3a5de767bf9a7341f9570a1ade53fd8574d81277 Mon Sep 17 00:00:00 2001 From: "zhangf@suq.cn" Date: Fri, 4 Sep 2026 10:37:06 +0800 Subject: [PATCH] =?UTF-8?q?refactor(investment):=20=E5=B0=86=E9=9D=99?= =?UTF-8?q?=E6=80=81=E6=8A=95=E8=B5=84=E4=BF=A1=E6=81=AF=E6=9B=BF=E6=8D=A2?= =?UTF-8?q?=E4=B8=BA=E5=8A=A8=E6=80=81=E6=95=B0=E6=8D=AE=E6=B8=B2=E6=9F=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 使用模板变量 {$current_cate.content|raw} 替换静态标题 - 将硬编码的图片路径替换为动态缩略图数据 {$current_cate.thumbnail.url ?? ''} - 添加PHP逻辑解析描述字段并生成信息列表数组 - 实现动态基本信息展示,替代固定的公司信息表格 - 使用标签库获取分类数据实现动态内容渲染 - 替换静态公告列表为动态内容页面组件 - 实现投资知识学习模块的数据动态加载 - 将投资者热线信息改为从设置中获取动态数据 - 更新联系方式为通过标签库动态获取的数值 --- public/themes/website/1/zh/demo/investment.html | 221 +++++------------------- 1 file changed, 44 insertions(+), 177 deletions(-) diff --git a/public/themes/website/1/zh/demo/investment.html b/public/themes/website/1/zh/demo/investment.html index 68c079d..c08b875 100644 --- a/public/themes/website/1/zh/demo/investment.html +++ b/public/themes/website/1/zh/demo/investment.html @@ -57,76 +57,41 @@

- 了解睿能科技 - 投资信息 + {$current_cate.content|raw}

- + {hcTaglib:category id="366" item="vo" field="*"} + {php} + $descStr = $vo['description'] ?? ''; + $infoList = []; + $pairs = explode('#', $descStr); + foreach ($pairs as $pair) { + $parts = explode(';', $pair, 2); + if (count($parts) === 2) { + $infoList[] = ['label' => trim($parts[0]), 'value' => trim($parts[1])]; + } + } + {/php}
-

基本信息

+

{$vo.title}

-
- 公司名称 - 福建睿能科技股份有限公司 -
-
- 统一社会信用代码 - 9135000066509091XF -
-
- 公司简称 - 睿能科技 -
-
- 英文名称 - FUJIAN RAYNEN TECHNOLOGY CO.,LTD. -
-
- 股票代码 - 603933 -
-
- 上市交易所 - 上海证券交易所 -
-
- 总股本 - 21086.22万股 -
-
- 注册资本 - 21086.22万元 -
-
- 投资者热线 - 0591-88267278 -
-
- 传真 - 0591-87881220 -
-
- 投资者邮箱 - investor@raynen.cn -
-
- 邮政编码 - 350109 -
-
- 公司信息披露报纸名称及网站 - 《中国证券报》、《上海证券报》、《证券时报》 《证券日报》、上海证券交易所 + {volist name="infoList" id="info" key="k"} +
+ {$info.label} + {$info.value}
+ {/volist}
- + {/hcTaglib:category} + {hcTaglib:category id="367" item="vo" field="*"}
-

公司公告

+

{$vo.title}

+ {hcTaglib:contentPage cid="367" mainField="*" subField="*" name="hc_content" limit="12" item="vo"} - - - - + {/hcTaglib:contentPage}
@@ -222,6 +139,7 @@
+ {/hcTaglib:category}

股票信息

@@ -259,68 +177,15 @@
+ {hcTaglib:category id="369" item="vo" field="*"}
-

投资知识学习

+

{$vo.title}

+ {/hcTaglib:category} + {hcTaglib:category id="370" item="vo" field="*"}
-

投资者热线

+

{$vo.title}

  • @@ -360,7 +228,7 @@ height="24" /> 地址
    -

    福建省福州市闽侯县南屿镇智慧大道12号

    +

    {hcTaglib:setting name="company_address" type="1" /}

  • @@ -369,9 +237,7 @@ 投资者热线

    - 0591-88267278 - / - 0591-88267288 + {$vo.description}

  • @@ -379,7 +245,7 @@ 传真
-

0591-87881220

+

{$vo.desc}

  • @@ -387,12 +253,13 @@ 邮箱

    - investor@raynen.cn + {hcTaglib:setting name="company_email" type="1" /}

  • + {/hcTaglib:category}