feat: 补齐配置文件

This commit is contained in:
MTrun 2022-02-28 16:08:25 +08:00
parent 6dbe603fcd
commit cab18e29f5
41 changed files with 161 additions and 1 deletions

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import MapChine from './index.vue' import MapChine from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/charts/map.png' import image from '@/assets/images/chart/charts/map.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const MapChineConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MAP, categoryName: ChatCategoryEnumName.MAP,
package: PackagesCategoryEnum.CHARTS, package: PackagesCategoryEnum.CHARTS,
node: MapChine, node: MapChine,
conNode: () => Configuration,
image: image image: image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import Funnel from './index.vue' import Funnel from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/charts/funnel.png' import image from '@/assets/images/chart/charts/funnel.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const FunnelConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MORE, categoryName: ChatCategoryEnumName.MORE,
package: PackagesCategoryEnum.CHARTS, package: PackagesCategoryEnum.CHARTS,
node: Funnel, node: Funnel,
conNode: () => Configuration,
image: image image: image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import Heatmap from './index.vue' import Heatmap from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/charts/heatmap.png' import image from '@/assets/images/chart/charts/heatmap.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const HeatmapConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MORE, categoryName: ChatCategoryEnumName.MORE,
package: PackagesCategoryEnum.CHARTS, package: PackagesCategoryEnum.CHARTS,
node: Heatmap, node: Heatmap,
conNode: () => Configuration,
image: image image: image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import Point from './index.vue' import Point from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/charts/Point.png' import image from '@/assets/images/chart/charts/Point.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const PointConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MORE, categoryName: ChatCategoryEnumName.MORE,
package: PackagesCategoryEnum.CHARTS, package: PackagesCategoryEnum.CHARTS,
node: Point, node: Point,
conNode: () => Configuration,
image: image image: image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import Radar from './index.vue' import Radar from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/charts/radar.png' import image from '@/assets/images/chart/charts/radar.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const RadarConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MORE, categoryName: ChatCategoryEnumName.MORE,
package: PackagesCategoryEnum.CHARTS, package: PackagesCategoryEnum.CHARTS,
node: Radar, node: Radar,
conNode: () => Configuration,
image: image image: image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import TreeMap from './index.vue' import TreeMap from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/charts/tree_map.png' import image from '@/assets/images/chart/charts/tree_map.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const TreeMapConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MORE, categoryName: ChatCategoryEnumName.MORE,
package: PackagesCategoryEnum.CHARTS, package: PackagesCategoryEnum.CHARTS,
node: TreeMap, node: TreeMap,
conNode: () => Configuration,
image: image image: image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import Variable from './index.vue' import Variable from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/charts/water_variable.png' import image from '@/assets/images/chart/charts/water_variable.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const VariableConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MORE, categoryName: ChatCategoryEnumName.MORE,
package: PackagesCategoryEnum.CHARTS, package: PackagesCategoryEnum.CHARTS,
node: Variable, node: Variable,
conNode: () => Configuration,
image: image image: image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import BorderCommon from './index.vue' import BorderCommon from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/decorates/border.png' import image from '@/assets/images/chart/decorates/border.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const BorderCommonConfig: ConfigType = {
categoryName: ChatCategoryEnumName.BORDER, categoryName: ChatCategoryEnumName.BORDER,
package: PackagesCategoryEnum.DECORATES, package: PackagesCategoryEnum.DECORATES,
node: BorderCommon, node: BorderCommon,
conNode: () => Configuration,
image image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import Number from './index.vue' import Number from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/decorates/number.png' import image from '@/assets/images/chart/decorates/number.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const NumberConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MORE, categoryName: ChatCategoryEnumName.MORE,
package: PackagesCategoryEnum.DECORATES, package: PackagesCategoryEnum.DECORATES,
node: Number, node: Number,
conNode: () => Configuration,
image image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import Time from './index.vue' import Time from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/decorates/time.png' import image from '@/assets/images/chart/decorates/time.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const TimeConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MORE, categoryName: ChatCategoryEnumName.MORE,
package: PackagesCategoryEnum.DECORATES, package: PackagesCategoryEnum.DECORATES,
node: Time, node: Time,
conNode: () => Configuration,
image image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import Weather from './index.vue' import Weather from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/decorates/weather.png' import image from '@/assets/images/chart/decorates/weather.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const WeatherConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MORE, categoryName: ChatCategoryEnumName.MORE,
package: PackagesCategoryEnum.DECORATES, package: PackagesCategoryEnum.DECORATES,
node: Weather, node: Weather,
conNode: () => Configuration,
image image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import WeatherTime from './index.vue' import WeatherTime from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/decorates/weather_time.png' import image from '@/assets/images/chart/decorates/weather_time.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const WeatherTimeConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MORE, categoryName: ChatCategoryEnumName.MORE,
package: PackagesCategoryEnum.DECORATES, package: PackagesCategoryEnum.DECORATES,
node: WeatherTime, node: WeatherTime,
conNode: () => Configuration,
image image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import Image from './index.vue' import Image from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/informations/photo.png' import image from '@/assets/images/chart/informations/photo.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const ImageConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MORE, categoryName: ChatCategoryEnumName.MORE,
package: PackagesCategoryEnum.INFORMATION, package: PackagesCategoryEnum.INFORMATION,
node: Image, node: Image,
conNode: () => Configuration,
image image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import TextCloud from './index.vue' import TextCloud from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/informations/words_cloud.png' import image from '@/assets/images/chart/informations/words_cloud.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const TextCloudConfig: ConfigType = {
categoryName: ChatCategoryEnumName.MORE, categoryName: ChatCategoryEnumName.MORE,
package: PackagesCategoryEnum.INFORMATION, package: PackagesCategoryEnum.INFORMATION,
node: TextCloud, node: TextCloud,
conNode: () => Configuration,
image image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import TextCommon from './index.vue' import TextCommon from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/informations/text_static.png' import image from '@/assets/images/chart/informations/text_static.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const TextCommonConfig: ConfigType = {
categoryName: ChatCategoryEnumName.TEXT, categoryName: ChatCategoryEnumName.TEXT,
package: PackagesCategoryEnum.INFORMATION, package: PackagesCategoryEnum.INFORMATION,
node: TextCommon, node: TextCommon,
conNode: () => Configuration,
image image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import TitleBevelAngle from './index.vue' import TitleBevelAngle from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/informations/title_diamond2.png' import image from '@/assets/images/chart/informations/title_diamond2.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const TitleBevelAngleConfig: ConfigType = {
categoryName: ChatCategoryEnumName.TITLE, categoryName: ChatCategoryEnumName.TITLE,
package: PackagesCategoryEnum.INFORMATION, package: PackagesCategoryEnum.INFORMATION,
node: TitleBevelAngle, node: TitleBevelAngle,
conNode: () => Configuration,
image image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import TitleCommon from './index.vue' import TitleCommon from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/informations/title_diamond.png' import image from '@/assets/images/chart/informations/title_diamond.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const TitleCommonConfig: ConfigType = {
categoryName: ChatCategoryEnumName.TITLE, categoryName: ChatCategoryEnumName.TITLE,
package: PackagesCategoryEnum.INFORMATION, package: PackagesCategoryEnum.INFORMATION,
node: TitleCommon, node: TitleCommon,
conNode: () => Configuration,
image image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import TitlePro from './index.vue' import TitlePro from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/informations/title_main.png' import image from '@/assets/images/chart/informations/title_main.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const TitleProConfig: ConfigType = {
categoryName: ChatCategoryEnumName.TITLE, categoryName: ChatCategoryEnumName.TITLE,
package: PackagesCategoryEnum.INFORMATION, package: PackagesCategoryEnum.INFORMATION,
node: TitlePro, node: TitlePro,
conNode: () => Configuration,
image image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import TableCategory from './index.vue' import TableCategory from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/Tables/tables_categary.png' import image from '@/assets/images/chart/Tables/tables_categary.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const TableCategoryConfig: ConfigType = {
categoryName: ChatCategoryEnumName.TABLE, categoryName: ChatCategoryEnumName.TABLE,
package: PackagesCategoryEnum.TABLES, package: PackagesCategoryEnum.TABLES,
node: TableCategory, node: TableCategory,
conNode: () => Configuration,
image image
} }

View File

@ -0,0 +1,6 @@
<template>
</template>
<script setup lang="ts">
</script>

View File

@ -1,4 +1,5 @@
import TableCommon from './index.vue' import TableCommon from './index.vue'
import Configuration from './config.vue'
import image from '@/assets/images/chart/Tables/tables.png' import image from '@/assets/images/chart/Tables/tables.png'
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
@ -10,5 +11,6 @@ export const TableCommonConfig: ConfigType = {
categoryName: ChatCategoryEnumName.TABLE, categoryName: ChatCategoryEnumName.TABLE,
package: PackagesCategoryEnum.TABLES, package: PackagesCategoryEnum.TABLES,
node: TableCommon, node: TableCommon,
conNode: () => Configuration,
image image
} }

2
types/vite-env.d.ts vendored
View File

@ -4,7 +4,7 @@ interface ImportMetaEnv {
// 标题 // 标题
VITE_GLOB_APP_TITLE: string; VITE_GLOB_APP_TITLE: string;
// 端口 // 端口
VITE_DEV_PORT: number; VITE_DEV_PORT: string;
// 开发地址 // 开发地址
VITE_DEV_PATH: string VITE_DEV_PATH: string
// 生产地址 // 生产地址