Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fk-spider-web
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
周田
fk-spider-web
Commits
96c336da
Commit
96c336da
authored
Jul 01, 2025
by
yzh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:修改路由文件夹名字
parent
50566d5a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
10 deletions
+23
-10
index.ts
src/router/index.ts
+23
-10
index.vue
src/views/os-dataDisplay/index.vue
+0
-0
No files found.
src/router/index.ts
View file @
96c336da
...
@@ -207,70 +207,83 @@ export const constantRoutes: Array<RouteRecordRaw> = [
...
@@ -207,70 +207,83 @@ export const constantRoutes: Array<RouteRecordRaw> = [
{
{
path
:
"/
scrapyd-server
"
,
path
:
"/
os-status
"
,
component
:
Layout
,
component
:
Layout
,
children
:
[
children
:
[
{
{
path
:
"list"
,
path
:
"list"
,
name
:
"statusMonitor"
,
name
:
"statusMonitor"
,
component
:
()
=>
import
(
"@/views/
scrapyd-server
/index.vue"
),
component
:
()
=>
import
(
"@/views/
os-status
/index.vue"
),
meta
:
{
title
:
"状态监控"
,
icon
:
"Key"
}
meta
:
{
title
:
"状态监控"
,
icon
:
"Key"
}
},
},
]
]
}
as
unknown
as
RouteRecordRaw
,
}
as
unknown
as
RouteRecordRaw
,
{
{
path
:
"
/scrapyd-server
"
,
path
:
"
os-taskInformation
"
,
component
:
Layout
,
component
:
Layout
,
children
:
[
children
:
[
{
{
path
:
"list"
,
path
:
"list"
,
name
:
"taskInformation"
,
name
:
"taskInformation"
,
component
:
()
=>
import
(
"@/views/
scrapyd-server
/index.vue"
),
component
:
()
=>
import
(
"@/views/
os-taskInformation
/index.vue"
),
meta
:
{
title
:
"任务信息"
,
icon
:
"Key"
}
meta
:
{
title
:
"任务信息"
,
icon
:
"Key"
}
},
},
]
]
}
as
unknown
as
RouteRecordRaw
,
}
as
unknown
as
RouteRecordRaw
,
{
{
path
:
"/
scrapyd-server
"
,
path
:
"/
os-taskRecord
"
,
component
:
Layout
,
component
:
Layout
,
children
:
[
children
:
[
{
{
path
:
"list"
,
path
:
"list"
,
name
:
"taskRecord"
,
name
:
"taskRecord"
,
component
:
()
=>
import
(
"@/views/
scrapyd-server
/index.vue"
),
component
:
()
=>
import
(
"@/views/
os-taskRecord
/index.vue"
),
meta
:
{
title
:
"任务执行记录"
,
icon
:
"Key"
}
meta
:
{
title
:
"任务执行记录"
,
icon
:
"Key"
}
},
},
]
]
}
as
unknown
as
RouteRecordRaw
,
}
as
unknown
as
RouteRecordRaw
,
{
{
path
:
"/
scrapyd-server
"
,
path
:
"/
os-dataDisplay
"
,
component
:
Layout
,
component
:
Layout
,
children
:
[
children
:
[
{
{
path
:
"list"
,
path
:
"list"
,
name
:
"dataDisplay"
,
name
:
"dataDisplay"
,
component
:
()
=>
import
(
"@/views/
scrapyd-server
/index.vue"
),
component
:
()
=>
import
(
"@/views/
os-dataDisplay
/index.vue"
),
meta
:
{
title
:
"数据展示"
,
icon
:
"Key"
}
meta
:
{
title
:
"数据展示"
,
icon
:
"Key"
}
},
},
]
]
}
as
unknown
as
RouteRecordRaw
,
}
as
unknown
as
RouteRecordRaw
,
{
{
path
:
"/
scrapyd-server
"
,
path
:
"/
os-preprocessingRecord
"
,
component
:
Layout
,
component
:
Layout
,
children
:
[
children
:
[
{
{
path
:
"list"
,
path
:
"list"
,
name
:
"preprocessingRecord"
,
name
:
"preprocessingRecord"
,
component
:
()
=>
import
(
"@/views/
scrapyd-server
/index.vue"
),
component
:
()
=>
import
(
"@/views/
os-preprocessingRecord
/index.vue"
),
meta
:
{
title
:
"预处理记录"
,
icon
:
"Key"
}
meta
:
{
title
:
"预处理记录"
,
icon
:
"Key"
}
},
},
]
]
}
as
unknown
as
RouteRecordRaw
,
}
as
unknown
as
RouteRecordRaw
,
{
path
:
"/os-system"
,
component
:
Layout
,
children
:
[
{
path
:
"list"
,
name
:
"osSystem"
,
component
:
()
=>
import
(
"@/views/os-system/index.vue"
),
meta
:
{
title
:
"开源系统管理"
,
icon
:
"Key"
}
},
]
}
as
unknown
as
RouteRecordRaw
,
// 404 页面必须放在最后 !!!
// 404 页面必须放在最后 !!!
// { path: '/:pathMatch(.*)*', redirect: '/404', hidden: true } as unknown as RouteRecordRaw
// { path: '/:pathMatch(.*)*', redirect: '/404', hidden: true } as unknown as RouteRecordRaw
]
]
...
...
src/views/os-d
isplayData
/index.vue
→
src/views/os-d
ataDisplay
/index.vue
View file @
96c336da
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment