From a5f19f5b43da022db9cb54d6fef1f5dc25a88c64 Mon Sep 17 00:00:00 2001 From: claude_dev Date: Fri, 14 Aug 2026 09:33:52 +0800 Subject: [PATCH] =?UTF-8?q?fix(live):=20vt=5Fsymbol=20=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E5=80=BC=E6=94=B9=E8=A3=B8=E7=A0=81600000(=E5=89=8D=E5=90=8E?= =?UTF-8?q?=E7=AB=AF;=E5=90=8E=E7=AB=AFcreate=E8=87=AA=E5=8A=A8=E8=A1=A5?= =?UTF-8?q?=E5=90=8E=E7=BC=80,=E9=BB=98=E8=AE=A4=E5=80=BC=E6=97=A0?= =?UTF-8?q?=E9=9C=80=E5=B8=A6SSE)=20[nas]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/live/New.vue | 2 +- sanguo_api/routes_live.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/live/New.vue b/frontend/src/views/live/New.vue index 21ca259..c597655 100644 --- a/frontend/src/views/live/New.vue +++ b/frontend/src/views/live/New.vue @@ -49,7 +49,7 @@ onMounted(async () => { const form = ref({ name: 'live-600000', account: '66639661', - vt_symbol: '600000.SSE', + vt_symbol: '600000', strategy_class: 'AShareDoubleMaStrategy', strategy_name: 'AShareDoubleMa_600000', setting: { diff --git a/sanguo_api/routes_live.py b/sanguo_api/routes_live.py index 01775f5..5f27af8 100644 --- a/sanguo_api/routes_live.py +++ b/sanguo_api/routes_live.py @@ -39,7 +39,7 @@ async def verify_token(authorization: str | None = Header(None)): class LiveCreateRequest(BaseModel): name: str = "live" account: str - vt_symbol: str = "600000.SSE" + vt_symbol: str = "600000" strategy_class: str = "AShareDoubleMaStrategy" strategy_name: str setting: dict = {}