Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
fxPark
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2024-04-18 10:10:46 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
25a9c179a3132294e40325a049b5b415f5db2381
25a9c179
1 parent
2d40887e
展览业页面替换
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
46 additions
and
3 deletions
src/assets/images/exhibition/01.1713404515.jpg
src/assets/images/exhibition/02.1713404515.jpg
src/assets/images/exhibition/03.1713404515.jpg
src/router/routes/modules/fxPark/index.js
src/views/fxPark/exhibition.vue
src/assets/images/exhibition/01.1713404515.jpg
0 → 100644
View file @
25a9c17
88.5 KB
src/assets/images/exhibition/02.1713404515.jpg
0 → 100644
View file @
25a9c17
91.8 KB
src/assets/images/exhibition/03.1713404515.jpg
0 → 100644
View file @
25a9c17
79.1 KB
src/router/routes/modules/fxPark/index.js
View file @
25a9c17
/*
* @Date: 2024-04-07 10:14:17
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-04-1
6 12:45:31
* @LastEditTime: 2024-04-1
8 09:41:49
* @FilePath: /fxPark/src/router/routes/modules/fxPark/index.js
* @Description: 文件描述
*/
const
index
=
[{
path
:
'/'
,
name
:
'“碳
”寻
复兴公园'
,
name
:
'“碳
寻”
复兴公园'
,
component
:
()
=>
import
(
'@/views/fxPark/index.vue'
),
redirect
:
''
,
meta
:
{
title
:
'“碳
”寻
复兴公园'
,
title
:
'“碳
寻”
复兴公园'
,
},
children
:
[],
},
{
...
...
@@ -59,6 +59,15 @@ const index = [{
title
:
'分享海报'
,
},
children
:
[],
},
{
path
:
'/exhibition'
,
name
:
'展览介绍'
,
component
:
()
=>
import
(
'@/views/fxPark/exhibition.vue'
),
redirect
:
''
,
meta
:
{
title
:
'展览介绍'
,
},
children
:
[],
}]
export
default
index
;
...
...
src/views/fxPark/exhibition.vue
0 → 100644
View file @
25a9c17
<!--
* @Date: 2024-04-17 18:40:39
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-04-18 09:49:23
* @FilePath: /fxPark/src/views/fxPark/exhibition.vue
* @Description: 文件描述
-->
<template>
<div class="exhibition-page">
<img src="https://cdn.ipadbiz.cn/xfPark/exhibition/01.1713404515.jpg" style="background-size: cover; width: 100%; pointer-events:none; display: block;">
<img src="https://cdn.ipadbiz.cn/xfPark/exhibition/02.1713404515.jpg" style="background-size: cover; width: 100%; pointer-events:none; display: block;">
<img src="https://cdn.ipadbiz.cn/xfPark/exhibition/03.1713404515.jpg" style="background-size: cover; width: 100%; pointer-events:none; display: block;">
</div>
</template>
<script setup>
import { ref } from 'vue'
import { useRoute, useRouter } from 'vue-router'
import { Cookies, $, _, axios, storeToRefs, mainStore, Toast, useTitle } from '@/utils/generatePackage.js'
//import { } from '@/utils/generateModules.js'
//import { } from '@/utils/generateIcons.js'
//import { } from '@/composables'
const $route = useRoute();
const $router = useRouter();
useTitle($route.meta.title);
</script>
<style lang="less" scoped>
.exhibition-page {
position: relative;
}
</style>
Please
register
or
login
to post a comment