| | |
| | | import type { ChartTypeEnum } from '../../../types'; |
| | | import StringInput from '../recordSetTable/components/StringInput.vue'; |
| | | import List from './components/List.vue'; |
| | | import Timestamp from './components/Timestamp.vue'; |
| | | import TimeRange from './components/TimeRange.vue'; |
| | | import { ChartTypeEnum } from '../../../types'; |
| | | import StringInput from '../recordSetTable/components/StringInput.vue' |
| | | export const enum RecordSetParamsType { |
| | | Step = 'time_step', |
| | | |
| | | TimeRange = 'time_range', |
| | | StringInput='string', |
| | | |
| | | } |
| | | |
| | | export type BaseParam = { |
| | | title:string; |
| | | id:string |
| | | id: string; |
| | | }; |
| | | |
| | | export type ListParamListItem = { |
| | |
| | | export const recordSetMapCom = { |
| | | [RecordSetParamsType.Step]: List, |
| | | [RecordSetParamsType.TimeRange]: TimeRange, |
| | | [RecordSetParamsType.StringInput]:StringInput |
| | | [RecordSetParamsType.StringInput]: StringInput, |
| | | }; |
| | | |
| | | export const scoreMap = { |