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

@@ -84,7 +84,7 @@ export async function listgoldData(query: Record<string, any>) {
*/
export async function goldData(query: Record<string, any>) {
const result = await request({
url: `/ne/kpi/data`,
url: `/neData/kpi/data`,
method: 'get',
params: {
neType: query.neType[0],

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>