diff --git a/components.d.ts b/components.d.ts index da4b015..6a3b3e4 100644 --- a/components.d.ts +++ b/components.d.ts @@ -54,6 +54,8 @@ declare module 'vue' { Collapsible: typeof import('./src/components/ui/collapsible/Collapsible.vue')['default'] CollapsibleContent: typeof import('./src/components/ui/collapsible/CollapsibleContent.vue')['default'] CollapsibleTrigger: typeof import('./src/components/ui/collapsible/CollapsibleTrigger.vue')['default'] + Day_cycle_power_wave_plot: typeof import('./src/components/dense/saber/day_cycle_power_wave_plot.vue')['default'] + Day_fft_ifft_plot: typeof import('./src/components/dense/saber/day_fft_ifft_plot.vue')['default'] DenseFramework: typeof import('./src/components/DenseFramework.vue')['default'] Drawer: typeof import('./src/components/ui/drawer/Drawer.vue')['default'] DrawerContent: typeof import('./src/components/ui/drawer/DrawerContent.vue')['default'] @@ -101,6 +103,7 @@ declare module 'vue' { MenubarSubContent: typeof import('./src/components/ui/menubar/MenubarSubContent.vue')['default'] MenubarSubTrigger: typeof import('./src/components/ui/menubar/MenubarSubTrigger.vue')['default'] MenubarTrigger: typeof import('./src/components/ui/menubar/MenubarTrigger.vue')['default'] + Month_power_wave_plot: typeof import('./src/components/dense/saber/month_power_wave_plot.vue')['default'] NavigationMenu: typeof import('./src/components/ui/navigation-menu/NavigationMenu.vue')['default'] NavigationMenuContent: typeof import('./src/components/ui/navigation-menu/NavigationMenuContent.vue')['default'] NavigationMenuIndicator: typeof import('./src/components/ui/navigation-menu/NavigationMenuIndicator.vue')['default'] @@ -116,9 +119,11 @@ declare module 'vue' { NumberFieldIncrement: typeof import('./src/components/ui/number-field/NumberFieldIncrement.vue')['default'] NumberFieldInput: typeof import('./src/components/ui/number-field/NumberFieldInput.vue')['default'] ParamsCard: typeof import('./src/components/ParamsCard.vue')['default'] + Plot_wave_fitting: typeof import('./src/components/dense/saber/plot_wave_fitting.vue')['default'] Popover: typeof import('./src/components/ui/popover/Popover.vue')['default'] PopoverContent: typeof import('./src/components/ui/popover/PopoverContent.vue')['default'] PopoverTrigger: typeof import('./src/components/ui/popover/PopoverTrigger.vue')['default'] + RadarSingle: typeof import('./src/components/dense/RadarSingle.vue')['default'] RadioGroup: typeof import('./src/components/ui/radio-group/RadioGroup.vue')['default'] RadioGroupItem: typeof import('./src/components/ui/radio-group/RadioGroupItem.vue')['default'] ResizableHandle: typeof import('./src/components/ui/resizable/ResizableHandle.vue')['default'] diff --git a/src/App.vue b/src/App.vue index d509dff..9fb48e1 100644 --- a/src/App.vue +++ b/src/App.vue @@ -65,12 +65,20 @@ const data = { isActive: true, items: [ { - title: '潮汐波强度', - url: '/radar/v1', + title: '潮汐波提取', + url: '/radar/TW-single', }, { - title: '潮汐波时空变化', - url: '/radar/v2', + title: '潮汐波统计', + url: '/radar/TW-stats', + }, + { + title: '行星波提取', + url: '/radar/PW-single', + }, + { + title: '行星波统计', + url: '/radar/PW-stats', }, ], }, @@ -81,20 +89,12 @@ const data = { isActive: true, items: [ { - title: '波动拟合图', - url: '/saber/plot_wave_fitting', + title: '重力波提取', + url: '/saber/gw/single', }, { - title: '日数据傅里叶变换分析', - url: '/saber/day_fft_ifft_plot', - }, - { - title: '日周期波动能量分析', - url: '/saber/day_cycle_power_wave_plot', - }, - { - title: '月度波动能量分析', - url: '/saber/month_power_wave_plot', + title: '重力波统计', + url: '/saber/gw/stats', }, ], diff --git a/src/CONSTANT.ts b/src/CONSTANT.ts index 2e3de48..0bab08c 100644 --- a/src/CONSTANT.ts +++ b/src/CONSTANT.ts @@ -1,3 +1,4 @@ +const KURONEKO_API = 'http://100.89.232.74:18200' // export const API_BASE_URL = 'http://localhost:5000' -export const API_BASE_URL = import.meta.env.PROD ? 'https://gca-api.dustella.net:8443' : 'http://localhost:18200' +export const API_BASE_URL = import.meta.env.PROD ? 'https://gca-api.dustella.net:8443' : KURONEKO_API // export const API_BASE_URL = 'https://gca-api.dustella.net:8443' diff --git a/src/components/dense/RadarSingle.vue b/src/components/dense/RadarSingle.vue new file mode 100644 index 0000000..c0ed661 --- /dev/null +++ b/src/components/dense/RadarSingle.vue @@ -0,0 +1,226 @@ + + + + + diff --git a/src/pages/saber/day_cycle_power_wave_plot.vue b/src/components/dense/saber/day_cycle_power_wave_plot.vue similarity index 99% rename from src/pages/saber/day_cycle_power_wave_plot.vue rename to src/components/dense/saber/day_cycle_power_wave_plot.vue index 63be541..cd03f7b 100644 --- a/src/pages/saber/day_cycle_power_wave_plot.vue +++ b/src/components/dense/saber/day_cycle_power_wave_plot.vue @@ -58,6 +58,7 @@ watch(() => selected.path, async () => {
+ diff --git a/src/pages/saber/month_power_wave_plot.vue b/src/components/dense/saber/month_power_wave_plot.vue similarity index 100% rename from src/pages/saber/month_power_wave_plot.vue rename to src/components/dense/saber/month_power_wave_plot.vue diff --git a/src/pages/saber/plot_wave_fitting.vue b/src/components/dense/saber/plot_wave_fitting.vue similarity index 99% rename from src/pages/saber/plot_wave_fitting.vue rename to src/components/dense/saber/plot_wave_fitting.vue index af674ba..cd99fc1 100644 --- a/src/pages/saber/plot_wave_fitting.vue +++ b/src/components/dense/saber/plot_wave_fitting.vue @@ -72,6 +72,7 @@ function mapHeightValue(input: number) {
+