2023-03-08 15:02:41 +08:00
|
|
|
<template>
|
|
|
|
<CollapseItem name="通用的Props" :expanded="true">
|
|
|
|
<SettingItemBox name="基础">
|
|
|
|
<setting-item name="类型">
|
|
|
|
<n-select v-model:value="props.optionData.dataset.type" size="small" :options="datePickerTypeOptions" />
|
|
|
|
</setting-item>
|
|
|
|
</SettingItemBox>
|
|
|
|
|
|
|
|
<SettingItemBox name="默认值">
|
|
|
|
<n-date-picker
|
|
|
|
size="small"
|
|
|
|
:style="{ width: ['date'].includes(props.optionData.dataset.type) ? 'auto' : '250px' }"
|
|
|
|
v-model:value="props.optionData.dataset.range"
|
|
|
|
:type="props.optionData.dataset.type"
|
|
|
|
clearable
|
|
|
|
/>
|
|
|
|
</SettingItemBox>
|
|
|
|
<SettingItemBox>
|
|
|
|
<template #name>
|
|
|
|
<n-text>动态</n-text>
|
|
|
|
<n-tooltip trigger="hover">
|
|
|
|
<template #trigger>
|
|
|
|
<n-icon size="21" :depth="3">
|
|
|
|
<help-outline-icon></help-outline-icon>
|
|
|
|
</n-icon>
|
|
|
|
</template>
|
2023-03-08 15:18:02 +08:00
|
|
|
<n-text>动态日期以默认值进行计算</n-text>
|
2023-03-08 15:02:41 +08:00
|
|
|
</n-tooltip>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<setting-item name="计算值">
|
|
|
|
<n-input-number v-model:value="props.optionData.dataset.count" size="small" placeholder="0">
|
|
|
|
<template #prefix>
|
|
|
|
<n-text depth="3">天</n-text>
|
|
|
|
</template>
|
|
|
|
</n-input-number>
|
|
|
|
</setting-item>
|
|
|
|
</SettingItemBox>
|
|
|
|
</CollapseItem>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { PropType } from 'vue'
|
|
|
|
import { icon } from '@/plugins'
|
|
|
|
import { CollapseItem, SettingItemBox, SettingItem } from '@/components/Pages/ChartItemSetting'
|
2023-03-11 16:58:32 +08:00
|
|
|
import { option } from './config'
|
2023-03-08 15:02:41 +08:00
|
|
|
|
|
|
|
const { HelpOutlineIcon } = icon.ionicons5
|
|
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
optionData: {
|
|
|
|
type: Object as PropType<typeof option>,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
const datePickerTypeOptions = [
|
|
|
|
{
|
|
|
|
label: '日期',
|
|
|
|
value: 'date'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '日期范围',
|
|
|
|
value: 'daterange'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
</script>
|