整合了部分代码,处理了昨天重构代码的小bug,修改了布局状态的保持
This commit is contained in:
parent
a59059b8ee
commit
b561ed6f0a
@ -6,8 +6,8 @@ const router = createRouter({
|
|||||||
{
|
{
|
||||||
path: '/',
|
path: '/',
|
||||||
name: 'root',
|
name: 'root',
|
||||||
redirect: '/thenew', // 默认重定向到 /thenew
|
redirect: '/thenew',
|
||||||
component: () => import('@/views/TheNewView.vue'), // 顶级路由组件
|
component: () => import('@/views/TheNewView.vue'),
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: 'thenew',
|
path: 'thenew',
|
||||||
@ -18,37 +18,37 @@ const router = createRouter({
|
|||||||
{
|
{
|
||||||
path: 'hour-line',
|
path: 'hour-line',
|
||||||
name: 'hour-line',
|
name: 'hour-line',
|
||||||
component: () => import('@/end/NewDesign.vue') // 嵌套子路由
|
component: () => import('@/end/NewDesign.vue')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'hour-line2',
|
path: 'hour-line2',
|
||||||
name: 'hour-line2',
|
name: 'hour-line2',
|
||||||
component: () => import('@/endnew/NewStyleDesign.vue') // 嵌套子路由
|
component: () => import('@/endnew/NewStyleDesign.vue')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'day-line',
|
path: 'day-line',
|
||||||
name: 'day-line',
|
name: 'day-line',
|
||||||
component: () => import('@/end/NodataView.vue') // 嵌套子路由
|
component: () => import('@/end/NodataView.vue')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'week-line',
|
path: 'week-line',
|
||||||
name: 'week-line',
|
name: 'week-line',
|
||||||
component: () => import('@/end/NodataView.vue') // 嵌套子路由
|
component: () => import('@/end/NodataView.vue')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'month-line',
|
path: 'month-line',
|
||||||
name: 'month-line',
|
name: 'month-line',
|
||||||
component: () => import('@/end/NodataView.vue') // 嵌套子路由
|
component: () => import('@/end/NodataView.vue')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'year-line',
|
path: 'year-line',
|
||||||
name: 'year-line',
|
name: 'year-line',
|
||||||
component: () => import('@/end/NodataView.vue') // 嵌套子路由
|
component: () => import('@/end/NodataView.vue')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'nodata',
|
path: 'nodata',
|
||||||
name: 'nodata',
|
name: 'nodata',
|
||||||
component: () => import('@/end/NodataView.vue') // 嵌套子路由
|
component: () => import('@/end/NodataView.vue')
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
import { createPinia } from "pinia";
|
|
||||||
|
|
||||||
const pinia = createPinia()
|
|
||||||
|
|
||||||
export default pinia
|
|
@ -1,30 +1,12 @@
|
|||||||
import { defineStore } from 'pinia'
|
import { defineStore } from 'pinia'
|
||||||
|
|
||||||
//数组处理
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const useTheme = defineStore("Theme", {
|
const useTheme = defineStore("Theme", {
|
||||||
state: () => ({
|
state: () => ({
|
||||||
theme: false,
|
theme: false,
|
||||||
fontcolor:'#fff',
|
fontcolor:'#fff',
|
||||||
style:'vertical'
|
style:'vertical'
|
||||||
}),
|
}),
|
||||||
actions: {
|
actions: { }
|
||||||
toggleFontcolor(){
|
|
||||||
if(this.theme){
|
|
||||||
this.fontcolor = '#000'
|
|
||||||
}else{
|
|
||||||
this.fontcolor = '#fff'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
toggleDarkTheme(){
|
|
||||||
this.theme = false
|
|
||||||
},
|
|
||||||
optionConfigData () {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
|
||||||
export default useTheme
|
export default useTheme
|
@ -55,7 +55,13 @@ const gridFunc = () => {
|
|||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
watch(() => props.message, (news,old) => {
|
watch(() => props.message, (news,old) => {
|
||||||
routerViewKey.value = routerViewKey.value + 1
|
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
|
activeIndex.value = 0
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -516,9 +516,9 @@ const clickTypeState = (val: CollapseModelValue) => {
|
|||||||
}
|
}
|
||||||
// 定义一个URL映射对象
|
// 定义一个URL映射对象
|
||||||
const stockUrls = {
|
const stockUrls = {
|
||||||
ganggu: 'http://127.0.0.1:8012/akshare/ganggudataK',
|
'港股': 'http://127.0.0.1:8012/akshare/ganggudataK',
|
||||||
meigu: 'http://127.0.0.1:8012/akshare/meigudataK',
|
'美股': 'http://127.0.0.1:8012/akshare/meigudataK',
|
||||||
hushen: 'http://127.0.0.1:8012/akshare/hushendataK'
|
'沪深': 'http://127.0.0.1:8012/akshare/hushendataK'
|
||||||
} as any;
|
} as any;
|
||||||
|
|
||||||
// 定义一个通用的发送请求的函数
|
// 定义一个通用的发送请求的函数
|
||||||
|
Loading…
Reference in New Issue
Block a user