diff --git a/src/router/index.ts b/src/router/index.ts index 52bec42..ce4314e 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -6,8 +6,8 @@ const router = createRouter({ { path: '/', name: 'root', - redirect: '/thenew', // 默认重定向到 /thenew - component: () => import('@/views/TheNewView.vue'), // 顶级路由组件 + redirect: '/thenew', + component: () => import('@/views/TheNewView.vue'), children: [ { path: 'thenew', @@ -18,37 +18,37 @@ const router = createRouter({ { path: 'hour-line', name: 'hour-line', - component: () => import('@/end/NewDesign.vue') // 嵌套子路由 + component: () => import('@/end/NewDesign.vue') }, { path: 'hour-line2', name: 'hour-line2', - component: () => import('@/endnew/NewStyleDesign.vue') // 嵌套子路由 + component: () => import('@/endnew/NewStyleDesign.vue') }, { path: 'day-line', name: 'day-line', - component: () => import('@/end/NodataView.vue') // 嵌套子路由 + component: () => import('@/end/NodataView.vue') }, { path: 'week-line', name: 'week-line', - component: () => import('@/end/NodataView.vue') // 嵌套子路由 + component: () => import('@/end/NodataView.vue') }, { path: 'month-line', name: 'month-line', - component: () => import('@/end/NodataView.vue') // 嵌套子路由 + component: () => import('@/end/NodataView.vue') }, { path: 'year-line', name: 'year-line', - component: () => import('@/end/NodataView.vue') // 嵌套子路由 + component: () => import('@/end/NodataView.vue') }, { path: 'nodata', name: 'nodata', - component: () => import('@/end/NodataView.vue') // 嵌套子路由 + component: () => import('@/end/NodataView.vue') } ] } diff --git a/src/store/index.ts b/src/store/index.ts deleted file mode 100644 index 757f71b..0000000 --- a/src/store/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { createPinia } from "pinia"; - -const pinia = createPinia() - -export default pinia diff --git a/src/store/usethemestore.ts b/src/store/usethemestore.ts index 245000e..bb78558 100644 --- a/src/store/usethemestore.ts +++ b/src/store/usethemestore.ts @@ -1,30 +1,12 @@ import { defineStore } from 'pinia' -//数组处理 - - - const useTheme = defineStore("Theme", { state: () => ({ theme: false, fontcolor:'#fff', style:'vertical' }), - actions: { - toggleFontcolor(){ - if(this.theme){ - this.fontcolor = '#000' - }else{ - this.fontcolor = '#fff' - } - }, - toggleDarkTheme(){ - this.theme = false - }, - optionConfigData () { - - } - } + actions: { } }) export default useTheme \ No newline at end of file diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index 3ced5ca..0e6c641 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -55,7 +55,13 @@ const gridFunc = () => { onMounted(() => { watch(() => props.message, (news,old) => { routerViewKey.value = routerViewKey.value + 1 - router.push(`/thenew/hour-line`) + if(style.value === 'vertical'){ + router.push(`/thenew/hour-line`) + } + if(style.value === 'grid'){ + router.push(`/thenew/hour-line2`) + } + activeIndex.value = 0 }) }) diff --git a/src/views/TheNewView.vue b/src/views/TheNewView.vue index f1f72b1..8e2c868 100644 --- a/src/views/TheNewView.vue +++ b/src/views/TheNewView.vue @@ -516,9 +516,9 @@ const clickTypeState = (val: CollapseModelValue) => { } // 定义一个URL映射对象 const stockUrls = { - ganggu: 'http://127.0.0.1:8012/akshare/ganggudataK', - meigu: 'http://127.0.0.1:8012/akshare/meigudataK', - hushen: 'http://127.0.0.1:8012/akshare/hushendataK' + '港股': 'http://127.0.0.1:8012/akshare/ganggudataK', + '美股': 'http://127.0.0.1:8012/akshare/meigudataK', + '沪深': 'http://127.0.0.1:8012/akshare/hushendataK' } as any; // 定义一个通用的发送请求的函数