|
|
@@ -1,6 +1,96 @@
|
|
|
<template>
|
|
|
+ <CollapseItem name="内容" :expanded="true">
|
|
|
+ <SettingItemBox name="数值">
|
|
|
+ <SettingItem name="起始值">
|
|
|
+ <n-input-number
|
|
|
+ v-model:value="optionData.from"
|
|
|
+ size="small"
|
|
|
+ :min="0"
|
|
|
+ ></n-input-number>
|
|
|
+ </SettingItem>
|
|
|
+ <SettingItem name="终点值">
|
|
|
+ <n-input-number
|
|
|
+ v-model:value="optionData.to"
|
|
|
+ size="small"
|
|
|
+ :min="1"
|
|
|
+ ></n-input-number>
|
|
|
+ </SettingItem>
|
|
|
+ <SettingItem name="大小">
|
|
|
+ <n-input-number
|
|
|
+ v-model:value="optionData.numberSize"
|
|
|
+ size="small"
|
|
|
+ :min="1"
|
|
|
+ ></n-input-number>
|
|
|
+ </SettingItem>
|
|
|
+ <SettingItem>
|
|
|
+ <n-space>
|
|
|
+ <n-switch v-model:value="optionData.showSeparator" size="small" />
|
|
|
+ <n-text>展示分割符</n-text>
|
|
|
+ </n-space>
|
|
|
+ </SettingItem>
|
|
|
+ </SettingItemBox>
|
|
|
+
|
|
|
+ <SettingItemBox name="数值">
|
|
|
+ <SettingItem name="前缀">
|
|
|
+ <n-input v-model:value="optionData.prefixText" size="small"></n-input>
|
|
|
+ </SettingItem>
|
|
|
+ <SettingItem name="后缀">
|
|
|
+ <n-input v-model:value="optionData.suffixText" size="small"></n-input>
|
|
|
+ </SettingItem>
|
|
|
+ </SettingItemBox>
|
|
|
+
|
|
|
+ <SettingItemBox name="颜色">
|
|
|
+ <SettingItem name="前缀">
|
|
|
+ <n-color-picker
|
|
|
+ size="small"
|
|
|
+ :modes="['hex']"
|
|
|
+ v-model:value="optionData.suffixColor"
|
|
|
+ ></n-color-picker>
|
|
|
+ </SettingItem>
|
|
|
+ <SettingItem name="后缀">
|
|
|
+ <n-color-picker
|
|
|
+ size="small"
|
|
|
+ :modes="['hex']"
|
|
|
+ v-model:value="optionData.suffixColor"
|
|
|
+ ></n-color-picker>
|
|
|
+ </SettingItem>
|
|
|
+ <SettingItem name="数值">
|
|
|
+ <n-color-picker
|
|
|
+ size="small"
|
|
|
+ :modes="['hex']"
|
|
|
+ v-model:value="optionData.numberColor"
|
|
|
+ ></n-color-picker>
|
|
|
+ </SettingItem>
|
|
|
+ </SettingItemBox>
|
|
|
+ </CollapseItem>
|
|
|
+
|
|
|
+ <CollapseItem name="动画" :expanded="true">
|
|
|
+ <SettingItemBox name="速度(s)">
|
|
|
+ <SettingItem>
|
|
|
+ <n-input-number
|
|
|
+ v-model:value="optionData.dur"
|
|
|
+ size="small"
|
|
|
+ :step="0.5"
|
|
|
+ :min="0.5"
|
|
|
+ ></n-input-number>
|
|
|
+ </SettingItem>
|
|
|
+ </SettingItemBox>
|
|
|
+ </CollapseItem>
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
+import { PropType } from 'vue'
|
|
|
+import {
|
|
|
+ CollapseItem,
|
|
|
+ SettingItemBox,
|
|
|
+ SettingItem,
|
|
|
+} from '@/components/ChartItemSetting/index'
|
|
|
+import { option } from './config'
|
|
|
|
|
|
+const props = defineProps({
|
|
|
+ optionData: {
|
|
|
+ type: Object as PropType<typeof option>,
|
|
|
+ required: true,
|
|
|
+ },
|
|
|
+})
|
|
|
</script>
|