hookehuyr

展览业页面替换

1 /* 1 /*
2 * @Date: 2024-04-07 10:14:17 2 * @Date: 2024-04-07 10:14:17
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2024-04-16 12:45:31 4 + * @LastEditTime: 2024-04-18 09:41:49
5 * @FilePath: /fxPark/src/router/routes/modules/fxPark/index.js 5 * @FilePath: /fxPark/src/router/routes/modules/fxPark/index.js
6 * @Description: 文件描述 6 * @Description: 文件描述
7 */ 7 */
8 const index = [{ 8 const index = [{
9 path: '/', 9 path: '/',
10 - name: '“碳”寻复兴公园', 10 + name: '“碳寻”复兴公园',
11 component: () => import('@/views/fxPark/index.vue'), 11 component: () => import('@/views/fxPark/index.vue'),
12 redirect: '', 12 redirect: '',
13 meta: { 13 meta: {
14 - title: '“碳”寻复兴公园', 14 + title: '“碳寻”复兴公园',
15 }, 15 },
16 children: [], 16 children: [],
17 }, { 17 }, {
...@@ -59,6 +59,15 @@ const index = [{ ...@@ -59,6 +59,15 @@ const index = [{
59 title: '分享海报', 59 title: '分享海报',
60 }, 60 },
61 children: [], 61 children: [],
62 +}, {
63 + path: '/exhibition',
64 + name: '展览介绍',
65 + component: () => import('@/views/fxPark/exhibition.vue'),
66 + redirect: '',
67 + meta: {
68 + title: '展览介绍',
69 + },
70 + children: [],
62 }] 71 }]
63 72
64 export default index; 73 export default index;
......
1 +<!--
2 + * @Date: 2024-04-17 18:40:39
3 + * @LastEditors: hookehuyr hookehuyr@gmail.com
4 + * @LastEditTime: 2024-04-18 09:49:23
5 + * @FilePath: /fxPark/src/views/fxPark/exhibition.vue
6 + * @Description: 文件描述
7 +-->
8 +<template>
9 + <div class="exhibition-page">
10 + <img src="https://cdn.ipadbiz.cn/xfPark/exhibition/01.1713404515.jpg" style="background-size: cover; width: 100%; pointer-events:none; display: block;">
11 + <img src="https://cdn.ipadbiz.cn/xfPark/exhibition/02.1713404515.jpg" style="background-size: cover; width: 100%; pointer-events:none; display: block;">
12 + <img src="https://cdn.ipadbiz.cn/xfPark/exhibition/03.1713404515.jpg" style="background-size: cover; width: 100%; pointer-events:none; display: block;">
13 + </div>
14 +</template>
15 +
16 +<script setup>
17 +import { ref } from 'vue'
18 +import { useRoute, useRouter } from 'vue-router'
19 +
20 +import { Cookies, $, _, axios, storeToRefs, mainStore, Toast, useTitle } from '@/utils/generatePackage.js'
21 +//import { } from '@/utils/generateModules.js'
22 +//import { } from '@/utils/generateIcons.js'
23 +//import { } from '@/composables'
24 +const $route = useRoute();
25 +const $router = useRouter();
26 +useTitle($route.meta.title);
27 +
28 +</script>
29 +
30 +<style lang="less" scoped>
31 + .exhibition-page {
32 + position: relative;
33 + }
34 +</style>