From 1b0f4039710534632dcde005066cbabef40f0c04 Mon Sep 17 00:00:00 2001 From: peijunlei Date: Mon, 7 Sep 2026 13:54:35 +0800 Subject: [PATCH] =?UTF-8?q?feat(stock):=20=E6=B7=BB=E5=8A=A0=E8=82=A1?= =?UTF-8?q?=E7=A5=A8=E8=A1=8C=E6=83=85=E8=B7=AF=E7=94=B1=E4=BB=A5=E6=94=AF?= =?UTF-8?q?=E6=8C=81=E5=B1=80=E9=83=A8=E5=88=B7=E6=96=B0=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- route/index.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/route/index.php b/route/index.php index 61d8e54..45b6666 100644 --- a/route/index.php +++ b/route/index.php @@ -6,6 +6,9 @@ use think\facade\Route; // 询盘提交 Route::post('inquiry/save', 'Inquiry/save'); +// 股票行情(页脚 / 投资者关系局部刷新) +Route::get('/stock/quote', 'Stock/quote'); + // 标签 Route::get('/tag', 'Tag/index');