update
This commit is contained in:
parent
cbd0960c8f
commit
63e4567ee7
@ -3,7 +3,7 @@ services:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
image: tradus-web:1.4.5
|
||||
image: tradus-web:1.4.6
|
||||
container_name: tradus-web
|
||||
ports:
|
||||
- '6000:80'
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
import { createRouter, createWebHistory } from 'vue-router'
|
||||
import HomeView from '../views/HomeView.vue'
|
||||
import DownloadView from '../views/DownloadView.vue'
|
||||
import StockAnalysisView from '../views/StockAnalysisView.vue'
|
||||
import ContactView from '../views/ContactView.vue'
|
||||
import { useUserStore } from '../stores/user'
|
||||
@ -24,17 +23,8 @@ const router = createRouter({
|
||||
{
|
||||
path: '/download',
|
||||
name: 'download',
|
||||
component: DownloadView,
|
||||
meta: { standalone: true },
|
||||
},
|
||||
{
|
||||
path: '/stock-analysis',
|
||||
name: 'stock-analysis',
|
||||
component: StockAnalysisView,
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: '股票分析助理',
|
||||
},
|
||||
component: () => import('../views/DownloadView.vue'),
|
||||
meta: { title: '下载' },
|
||||
},
|
||||
{
|
||||
path: '/analysis/:type',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user