fix(live): vt_symbol 默认值改裸码600000(前后端;后端create自动补后缀,默认值无需带SSE) [nas]
CI/CD / test (push) Successful in 9s
CI/CD / nas-deploy (push) Successful in 24s
CI/CD / nas-verify (push) Successful in 10s

This commit is contained in:
2026-08-14 09:33:52 +08:00
parent 94e1b59ec1
commit a5f19f5b43
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ onMounted(async () => {
const form = ref<LiveCreateRequest>({
name: 'live-600000',
account: '66639661',
vt_symbol: '600000.SSE',
vt_symbol: '600000',
strategy_class: 'AShareDoubleMaStrategy',
strategy_name: 'AShareDoubleMa_600000',
setting: {
+1 -1
View File
@@ -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 = {}