Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
H
hxyj-admin-fe
Project
Project
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
hxyj
hxyj-admin-fe
Commits
504e5bac
You need to sign in or sign up before continuing.
Commit
504e5bac
authored
Jun 13, 2025
by
tyyin lan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(routes): 游船&游船项目&游船公司
parent
59b460b9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
96 additions
and
3 deletions
+96
-3
general-table-layout.vue
src/components/general-table-layout.vue
+1
-1
boat-tour-project.ts
src/router/modules/boat-tour-project.ts
+26
-0
carousel-management.ts
src/router/modules/carousel-management.ts
+1
-1
city-management.ts
src/router/modules/city-management.ts
+1
-1
cruise-company.ts
src/router/modules/cruise-company.ts
+26
-0
yacht.ts
src/router/modules/yacht.ts
+26
-0
boat-tour-project.vue
src/views/boat-tour-project/boat-tour-project.vue
+5
-0
cruise-company.vue
src/views/cruise-company/cruise-company.vue
+5
-0
yacht.vue
src/views/yacht/yacht.vue
+5
-0
No files found.
src/components/general-table-layout.vue
View file @
504e5bac
...
@@ -27,7 +27,7 @@ function handlePaginationChange(currentPage: number, pageSize: number) {
...
@@ -27,7 +27,7 @@ function handlePaginationChange(currentPage: number, pageSize: number) {
<slot></slot>
<slot></slot>
</div>
</div>
<div
class=
"flex justify-end py-[
16
px]"
>
<div
class=
"flex justify-end py-[
20
px]"
>
<el-pagination
<el-pagination
v-model:current-page=
"paginationConfig.currentPage"
v-model:current-page=
"paginationConfig.currentPage"
v-model:page-size=
"paginationConfig.pageSize"
v-model:page-size=
"paginationConfig.pageSize"
...
...
src/router/modules/boat-tour-project.ts
0 → 100644
View file @
504e5bac
import
{
type
RouteRecordRaw
}
from
'vue-router'
import
Layout
from
'@/layout/index.vue'
export
default
[
{
path
:
'/boat-tour-project'
,
meta
:
{
rank
:
1005
,
title
:
'游船项目'
,
icon
:
'icon-xiangmu'
,
},
component
:
Layout
,
children
:
[
{
path
:
''
,
name
:
'BoatTourProject'
,
meta
:
{
rank
:
1001
,
title
:
'列表'
,
hideSideMenItem
:
true
,
},
component
:
()
=>
import
(
'@/views/boat-tour-project/boat-tour-project.vue'
),
},
],
},
]
as
RouteRecordRaw
[]
src/router/modules/carousel-management.ts
View file @
504e5bac
...
@@ -5,7 +5,7 @@ export default [
...
@@ -5,7 +5,7 @@ export default [
{
{
path
:
'/carousel-management'
,
path
:
'/carousel-management'
,
meta
:
{
meta
:
{
rank
:
100
1
,
rank
:
100
2
,
title
:
'轮播图管理'
,
title
:
'轮播图管理'
,
icon
:
'icon-carousel'
,
icon
:
'icon-carousel'
,
},
},
...
...
src/router/modules/city-management.ts
View file @
504e5bac
...
@@ -5,7 +5,7 @@ export default [
...
@@ -5,7 +5,7 @@ export default [
{
{
path
:
'/city-management'
,
path
:
'/city-management'
,
meta
:
{
meta
:
{
rank
:
100
1
,
rank
:
100
3
,
title
:
'城市管理'
,
title
:
'城市管理'
,
icon
:
'icon-city'
,
icon
:
'icon-city'
,
},
},
...
...
src/router/modules/cruise-company.ts
0 → 100644
View file @
504e5bac
import
{
type
RouteRecordRaw
}
from
'vue-router'
import
Layout
from
'@/layout/index.vue'
export
default
[
{
path
:
'/cruise-company'
,
meta
:
{
rank
:
1006
,
title
:
'游船公司'
,
icon
:
'icon-gongsi'
,
},
component
:
Layout
,
children
:
[
{
path
:
''
,
name
:
'CruiseCompany'
,
meta
:
{
rank
:
1001
,
title
:
'列表'
,
hideSideMenItem
:
true
,
},
component
:
()
=>
import
(
'@/views/cruise-company/cruise-company.vue'
),
},
],
},
]
as
RouteRecordRaw
[]
src/router/modules/yacht.ts
0 → 100644
View file @
504e5bac
import
{
type
RouteRecordRaw
}
from
'vue-router'
import
Layout
from
'@/layout/index.vue'
export
default
[
{
path
:
'/yacht'
,
meta
:
{
rank
:
1004
,
title
:
'游船'
,
icon
:
'icon-youchuan'
,
},
component
:
Layout
,
children
:
[
{
path
:
''
,
name
:
'Yacht'
,
meta
:
{
rank
:
1001
,
title
:
'列表'
,
hideSideMenItem
:
true
,
},
component
:
()
=>
import
(
'@/views/yacht/yacht.vue'
),
},
],
},
]
as
RouteRecordRaw
[]
src/views/boat-tour-project/boat-tour-project.vue
0 → 100644
View file @
504e5bac
<
script
setup
lang=
"ts"
></
script
>
<
template
>
<div>
游船项目
</div>
</
template
>
src/views/cruise-company/cruise-company.vue
0 → 100644
View file @
504e5bac
<
script
setup
lang=
"ts"
></
script
>
<
template
>
<div>
游船公司
</div>
</
template
>
src/views/yacht/yacht.vue
0 → 100644
View file @
504e5bac
<
script
setup
lang=
"ts"
></
script
>
<
template
>
<div>
游船
</div>
</
template
>
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