fix: 黄金指标5s数据查询过滤

This commit is contained in:
TsMask
2024-01-27 18:39:12 +08:00
parent 82d87743a1
commit d0c2a358ed
2 changed files with 7 additions and 5 deletions

View File

@@ -443,10 +443,12 @@ onMounted(() => {
v-model:value="queryParams.particle"
:placeholder="t('common.selectPlease')"
:options="[
{ label: '5M', value: '5' },
{ label: '15M', value: '15' },
{ label: '30M', value: '30' },
{ label: '60M', value: '60' },
{ label: '5S', value: 5 },
{ label: '1M', value: 60 },
{ label: '5M', value: 300 },
{ label: '15M', value: 900 },
{ label: '30M', value: 1800 },
{ label: '60M', value: 3600 },
]"
/>
</a-form-item>