diff --git a/index.css b/index.css
new file mode 100644
index 00000000..3e422da2
--- /dev/null
+++ b/index.css
@@ -0,0 +1,85 @@
+* {
+ margin: 0;
+}
+.first-loading-wrp {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100vh;
+ background-color: #17171a;
+}
+.first-loading-wrp > h1 {
+ font-size: 128px;
+}
+.first-loading-wrp .loading-wrp {
+ padding: 98px;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+.dot {
+ animation: antRotate 1.2s infinite linear;
+ transform: rotate(45deg);
+ position: relative;
+ display: inline-block;
+ font-size: 32px;
+ width: 32px;
+ height: 32px;
+ box-sizing: border-box;
+}
+.dot i {
+ width: 14px;
+ height: 14px;
+ position: absolute;
+ display: block;
+ background-color: #1890ff;
+ border-radius: 100%;
+ transform: scale(0.75);
+ transform-origin: 50% 50%;
+ opacity: 0.3;
+ animation: antSpinMove 1s infinite linear alternate;
+}
+.dot i:nth-child(1) {
+ top: 0;
+ left: 0;
+}
+.dot i:nth-child(2) {
+ top: 0;
+ right: 0;
+ -webkit-animation-delay: 0.4s;
+ animation-delay: 0.4s;
+}
+.dot i:nth-child(3) {
+ right: 0;
+ bottom: 0;
+ -webkit-animation-delay: 0.8s;
+ animation-delay: 0.8s;
+}
+.dot i:nth-child(4) {
+ bottom: 0;
+ left: 0;
+ -webkit-animation-delay: 1.2s;
+ animation-delay: 1.2s;
+}
+@keyframes antRotate {
+ to {
+ -webkit-transform: rotate(405deg);
+ transform: rotate(405deg);
+ }
+}
+@-webkit-keyframes antRotate {
+ to {
+ -webkit-transform: rotate(405deg);
+ transform: rotate(405deg);
+ }
+}
+@keyframes antSpinMove {
+ to {
+ opacity: 1;
+ }
+}
+@-webkit-keyframes antSpinMove {
+ to {
+ opacity: 1;
+ }
+}
diff --git a/index.html b/index.html
index b65bd6d6..ca956930 100644
--- a/index.html
+++ b/index.html
@@ -1,26 +1,27 @@
-
-
-
-
-
-
- GoView
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
GoView
+
+
+
+
+
+
-
-
-
-
+
+
diff --git a/src/components/AppleControlBtn/index.vue b/src/components/AppleControlBtn/index.vue
index b377dda4..21d1063f 100644
--- a/src/components/AppleControlBtn/index.vue
+++ b/src/components/AppleControlBtn/index.vue
@@ -3,7 +3,7 @@
@@ -21,6 +21,12 @@ import { screenfullFn } from '@/utils'
const emit = defineEmits(['close', 'remove', 'resize', 'fullResize'])
const props = defineProps({
+ // mini 版本
+ mini: {
+ request: false,
+ type: Boolean,
+ default: false
+ },
// 禁用所有按钮
disabled: {
request: false,
@@ -55,26 +61,26 @@ const isFull = computed(() => {
})
const btnList: {
- title: string,
- key: "close" | "remove" | "resize" | "fullResize",
+ title: string
+ key: 'close' | 'remove' | 'resize' | 'fullResize'
icon: any
}[] = [
- {
- title: '关闭',
- key: 'close',
- icon: CloseIcon
- },
- {
- title: '缩小',
- key: 'remove',
- icon: RemoveIcon
- },
- {
- title: isFull ? '缩小' : '放大',
- key: props.narrow ? 'fullResize' : 'resize',
- icon: ResizeIcon
- }
- ]
+ {
+ title: '关闭',
+ key: 'close',
+ icon: CloseIcon
+ },
+ {
+ title: '缩小',
+ key: 'remove',
+ icon: RemoveIcon
+ },
+ {
+ title: isFull ? '缩小' : '放大',
+ key: props.narrow ? 'fullResize' : 'resize',
+ icon: ResizeIcon
+ }
+]
const handleClick = (key: 'close' | 'remove' | 'resize' | 'fullResize') => {
if (key === 'fullResize') screenfullFn()
@@ -85,7 +91,7 @@ const handleClick = (key: 'close' | 'remove' | 'resize' | 'fullResize') => {
\ No newline at end of file
diff --git a/src/packages/components/Chart/index.ts b/src/packages/components/Chart/index.ts
new file mode 100644
index 00000000..e0ef5df2
--- /dev/null
+++ b/src/packages/components/Chart/index.ts
@@ -0,0 +1,3 @@
+import { barCommonConfig } from './bar/barCommon/index'
+
+export const BarList = [barCommonConfig]
diff --git a/src/packages/components/Decorate/border/borderCommon/index.ts b/src/packages/components/Decorate/border/borderCommon/index.ts
new file mode 100644
index 00000000..bfb03a8f
--- /dev/null
+++ b/src/packages/components/Decorate/border/borderCommon/index.ts
@@ -0,0 +1,11 @@
+import BorderCommon from './index.vue'
+import barImg from '@/assets/images/chart/bar_y.png'
+import { ConfigType } from '@/packages/index.d'
+
+// 柱状图
+export const barCommonConfig: ConfigType = {
+ key: 'Border',
+ title: '柱状图',
+ node: BorderCommon,
+ coverGraph: barImg
+}
diff --git a/src/packages/components/Decorate/border/borderCommon/index.vue b/src/packages/components/Decorate/border/borderCommon/index.vue
new file mode 100644
index 00000000..f3abbb36
--- /dev/null
+++ b/src/packages/components/Decorate/border/borderCommon/index.vue
@@ -0,0 +1,13 @@
+
+
+ 柱状图组件渲染
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/packages/components/Decorate/index.ts b/src/packages/components/Decorate/index.ts
new file mode 100644
index 00000000..401a72ce
--- /dev/null
+++ b/src/packages/components/Decorate/index.ts
@@ -0,0 +1,3 @@
+import { barCommonConfig } from './border/borderCommon/index'
+
+export const BarList = [barCommonConfig]
diff --git a/src/packages/index.d.ts b/src/packages/index.d.ts
new file mode 100644
index 00000000..dca310fd
--- /dev/null
+++ b/src/packages/index.d.ts
@@ -0,0 +1,14 @@
+import { Component } from '@/router/types'
+
+// import { ConfigType } from '@/packages/index.d'
+export type ConfigType = {
+ key: string
+ title: string
+ node: Component
+ image: string
+ [T: string]: unknown
+}
+
+export type PackagesType = {
+ Charts: ConfigType[]
+}
diff --git a/src/packages/index.ts b/src/packages/index.ts
index e69de29b..a26ebf5f 100644
--- a/src/packages/index.ts
+++ b/src/packages/index.ts
@@ -0,0 +1,9 @@
+import { PackagesType } from '@/packages/index.d'
+import { BarList } from '@/packages/components/Chart/index'
+
+// 所有图表
+let packagesList: PackagesType = {
+ Charts: BarList
+}
+
+export { packagesList }
diff --git a/src/store/modules/packagesStore/packagesStore.d.ts b/src/store/modules/packagesStore/packagesStore.d.ts
new file mode 100644
index 00000000..b5100701
--- /dev/null
+++ b/src/store/modules/packagesStore/packagesStore.d.ts
@@ -0,0 +1,7 @@
+import { PackagesType, ConfigType } from '@/packages/index.d'
+
+export { ConfigType }
+
+export interface PackagesStoreType {
+ packagesList: PackagesType
+}
diff --git a/src/store/modules/packagesStore/packagesStore.ts b/src/store/modules/packagesStore/packagesStore.ts
new file mode 100644
index 00000000..93fef87b
--- /dev/null
+++ b/src/store/modules/packagesStore/packagesStore.ts
@@ -0,0 +1,18 @@
+import { defineStore } from 'pinia'
+import { PackagesStoreType, ConfigType } from './packagesStore.d'
+import { packagesList } from '@/packages/index'
+
+export const usePackagesStore = defineStore({
+ id: 'usePackagesStore',
+ state: (): PackagesStoreType => ({
+ packagesList
+ }),
+ getters: {
+ getPackagesList(): ConfigType | {} {
+ if (this.packagesList && this.packagesList.charts) {
+ return this.packagesList.charts
+ }
+ return {}
+ }
+ }
+})
diff --git a/src/styles/common/var.scss b/src/styles/common/var.scss
index 13787d32..d08beb2e 100644
--- a/src/styles/common/var.scss
+++ b/src/styles/common/var.scss
@@ -21,7 +21,7 @@ $--color-light-bg-2: #f2f3f5;
$--color-light-bg-2-shallow: lighten($--color-light-bg-2, $--light-shalow);
$--color-light-bg-3: #e5e6eb;
$--color-light-bg-3-shallow: lighten($--color-light-bg-3, $--light-shalow);
-$--color-light-bg-4: #c9cdd4;
+$--color-light-bg-4: #e3e3e4;
$--color-light-bg-4-shallow: lighten($--color-light-bg-4, $--light-shalow);
$--color-light-bg-5: #bebebe;
$--color-light-bg-5-shallow: lighten($--color-light-bg-5, $--light-shalow);
diff --git a/src/views/chart/components/ContentCharts/components/ChartCommon/index.ts b/src/views/chart/components/ContentCharts/components/ChartCommon/index.ts
deleted file mode 100644
index 31fa457e..00000000
--- a/src/views/chart/components/ContentCharts/components/ChartCommon/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import ChartCommon from './index.vue'
-
-export { ChartCommon }
\ No newline at end of file
diff --git a/src/views/chart/components/ContentCharts/components/ChartCommon/index.vue b/src/views/chart/components/ContentCharts/components/ChartCommon/index.vue
deleted file mode 100644
index b4afcc42..00000000
--- a/src/views/chart/components/ContentCharts/components/ChartCommon/index.vue
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
-
-
-
-
diff --git a/src/views/chart/components/ContentCharts/components/Charts/index.ts b/src/views/chart/components/ContentCharts/components/Charts/index.ts
new file mode 100644
index 00000000..9b34a4bc
--- /dev/null
+++ b/src/views/chart/components/ContentCharts/components/Charts/index.ts
@@ -0,0 +1,3 @@
+import Charts from './index.vue'
+
+export { Charts }
diff --git a/src/views/chart/components/ContentCharts/components/Charts/index.vue b/src/views/chart/components/ContentCharts/components/Charts/index.vue
new file mode 100644
index 00000000..4eaad232
--- /dev/null
+++ b/src/views/chart/components/ContentCharts/components/Charts/index.vue
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
![]()
+
+
+
+
+
+
+
+
+
diff --git a/src/views/chart/components/ContentCharts/components/DecorateCommon/index.ts b/src/views/chart/components/ContentCharts/components/DecorateCommon/index.ts
deleted file mode 100644
index 8be65690..00000000
--- a/src/views/chart/components/ContentCharts/components/DecorateCommon/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import DecorateCommon from './index.vue'
-
-export { DecorateCommon }
diff --git a/src/views/chart/components/ContentCharts/components/Decorates/index.ts b/src/views/chart/components/ContentCharts/components/Decorates/index.ts
new file mode 100644
index 00000000..18e31ce5
--- /dev/null
+++ b/src/views/chart/components/ContentCharts/components/Decorates/index.ts
@@ -0,0 +1,3 @@
+import Decorates from './index.vue'
+
+export { Decorates }
diff --git a/src/views/chart/components/ContentCharts/components/DecorateCommon/index.vue b/src/views/chart/components/ContentCharts/components/Decorates/index.vue
similarity index 100%
rename from src/views/chart/components/ContentCharts/components/DecorateCommon/index.vue
rename to src/views/chart/components/ContentCharts/components/Decorates/index.vue
diff --git a/src/views/chart/components/ContentCharts/components/TableCommon/index.ts b/src/views/chart/components/ContentCharts/components/TableCommon/index.ts
deleted file mode 100644
index a717f771..00000000
--- a/src/views/chart/components/ContentCharts/components/TableCommon/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import TableCommon from './index.vue'
-
-export { TableCommon }
diff --git a/src/views/chart/components/ContentCharts/components/Tables/index.ts b/src/views/chart/components/ContentCharts/components/Tables/index.ts
new file mode 100644
index 00000000..315cfb7b
--- /dev/null
+++ b/src/views/chart/components/ContentCharts/components/Tables/index.ts
@@ -0,0 +1,3 @@
+import Tables from './index.vue'
+
+export { Tables }
diff --git a/src/views/chart/components/ContentCharts/components/TableCommon/index.vue b/src/views/chart/components/ContentCharts/components/Tables/index.vue
similarity index 100%
rename from src/views/chart/components/ContentCharts/components/TableCommon/index.vue
rename to src/views/chart/components/ContentCharts/components/Tables/index.vue
diff --git a/src/views/chart/components/ContentCharts/components/TextCommon/index.ts b/src/views/chart/components/ContentCharts/components/TextCommon/index.ts
deleted file mode 100644
index 1e94511e..00000000
--- a/src/views/chart/components/ContentCharts/components/TextCommon/index.ts
+++ /dev/null
@@ -1,3 +0,0 @@
-import TextCommon from './index.vue'
-
-export { TextCommon }
diff --git a/src/views/chart/components/ContentCharts/components/Texts/index.ts b/src/views/chart/components/ContentCharts/components/Texts/index.ts
new file mode 100644
index 00000000..084b3202
--- /dev/null
+++ b/src/views/chart/components/ContentCharts/components/Texts/index.ts
@@ -0,0 +1,3 @@
+import Texts from './index.vue'
+
+export { Texts }
diff --git a/src/views/chart/components/ContentCharts/components/TextCommon/index.vue b/src/views/chart/components/ContentCharts/components/Texts/index.vue
similarity index 100%
rename from src/views/chart/components/ContentCharts/components/TextCommon/index.vue
rename to src/views/chart/components/ContentCharts/components/Texts/index.vue
diff --git a/src/views/chart/components/ContentCharts/hooks/asideHook.ts b/src/views/chart/components/ContentCharts/hooks/asideHook.ts
new file mode 100644
index 00000000..0f9e6877
--- /dev/null
+++ b/src/views/chart/components/ContentCharts/hooks/asideHook.ts
@@ -0,0 +1,97 @@
+import { reactive, ref } from 'vue'
+import { icon } from '@/plugins'
+import { Charts } from '../components/Charts'
+import { Tables } from '../components/Tables'
+import { Texts } from '../components/Texts'
+import { Decorates } from '../components/Decorates'
+import { renderLang, renderIcon } from '@/utils'
+import { themeColor, setItem, getCharts } from './layoutHook'
+// 图表
+import { usePackagesStore } from '@/store/modules/packagesStore/packagesStore'
+// 图标
+const { BarChartIcon } = icon.ionicons5
+const {
+ TableSplitIcon,
+ RoadmapIcon,
+ SpellCheckIcon,
+ GraphicalDataFlowIcon
+} = icon.carbon
+
+// 图表
+const { packagesList } = usePackagesStore()
+const menuOptions: any[] = reactive([])
+
+const infoObj = new Map([
+ [
+ 'Charts',
+ {
+ icon: renderIcon(RoadmapIcon),
+ label: renderLang('图表'),
+ node: Charts
+ }
+ ],
+ [
+ 'Tables',
+ {
+ icon: renderIcon(TableSplitIcon),
+ label: renderLang('表格'),
+ node: Tables
+ }
+ ],
+ [
+ 'Texts',
+ {
+ icon: renderIcon(SpellCheckIcon),
+ label: renderLang('信息'),
+ node: Tables
+ }
+ ],
+ [
+ 'Decorates',
+ {
+ icon: renderIcon(GraphicalDataFlowIcon),
+ label: renderLang('表格'),
+ node: Decorates
+ }
+ ],
+])
+
+Object.getOwnPropertyNames(packagesList).forEach(function (key) {
+ menuOptions.push({
+ key: key,
+ icon: infoObj.get(key)?.icon,
+ label: infoObj.get(key)?.label,
+ node: infoObj.get(key)?.node,
+ // @ts-ignore string 赋值给 any 的问题
+ packagesList: packagesList[key]
+ })
+})
+
+// 记录选中值
+let beforeSelect: string = menuOptions[0]['key']
+const selectValue = ref(menuOptions[0]['key'])
+// 选中的对象值
+const selecOptions = ref(menuOptions[0])
+
+// 点击 item
+const clickItemHandle = (key: string, item: T) => {
+ // 处理渲染的 node
+ selecOptions.value = item
+ // 处理折叠
+ if (beforeSelect === key) {
+ setItem('charts', !getCharts.value)
+ } else {
+ setItem('charts', true)
+ }
+ beforeSelect = key
+}
+
+export {
+ getCharts,
+ BarChartIcon,
+ themeColor,
+ selecOptions,
+ selectValue,
+ clickItemHandle,
+ menuOptions
+}
diff --git a/src/views/chart/components/ContentCharts/hooks/layoutHook.ts b/src/views/chart/components/ContentCharts/hooks/layoutHook.ts
new file mode 100644
index 00000000..1e355338
--- /dev/null
+++ b/src/views/chart/components/ContentCharts/hooks/layoutHook.ts
@@ -0,0 +1,20 @@
+import { ref, toRefs } from 'vue'
+
+// 布局
+import { useChartLayoutStore } from '@/store/modules/chartLayoutStore/chartLayoutStore'
+// 样式
+import { useDesignStore } from '@/store/modules/designStore/designStore'
+
+// 全局颜色
+const designStore = useDesignStore()
+const themeColor = ref(designStore.getAppTheme)
+
+// 结构控制
+const { setItem } = useChartLayoutStore()
+const { getCharts } = toRefs(useChartLayoutStore())
+
+export {
+ themeColor,
+ setItem,
+ getCharts
+}
\ No newline at end of file
diff --git a/src/views/chart/components/ContentCharts/index.vue b/src/views/chart/components/ContentCharts/index.vue
index 5b0180de..c01f6c62 100644
--- a/src/views/chart/components/ContentCharts/index.vue
+++ b/src/views/chart/components/ContentCharts/index.vue
@@ -25,7 +25,7 @@
@@ -36,86 +36,21 @@