From dc44e73e8008e012b79f5f42afde4f10759f8206 Mon Sep 17 00:00:00 2001 From: yujialong <479214531@qq.com> Date: Wed, 24 Jul 2024 17:22:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9E=E9=AA=8C=E5=8F=B0=E7=AD=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/index.html | 8 +- src/api/index.js | 3 + src/assets/img/my-school.png | Bin 0 -> 2367 bytes src/assets/img/product/1.png | Bin 0 -> 667 bytes src/assets/img/product/2.png | Bin 0 -> 451 bytes src/assets/img/product/3.png | Bin 0 -> 581 bytes src/assets/img/product/4.png | Bin 0 -> 490 bytes src/assets/img/product/5.png | Bin 0 -> 585 bytes src/assets/img/product/bg1.png | Bin 0 -> 17607 bytes src/assets/img/product/bg2.png | Bin 0 -> 35019 bytes src/layouts/header/index.vue | 4 +- src/pages/station/list/index.vue | 382 +++++++++------- src/pages/station/preview/index.vue | 65 +-- src/pages/station/product/index.vue | 671 ++++++++++++++++++++++++++++ src/router/modules/station.js | 46 +- 15 files changed, 962 insertions(+), 217 deletions(-) create mode 100644 src/assets/img/my-school.png create mode 100644 src/assets/img/product/1.png create mode 100644 src/assets/img/product/2.png create mode 100644 src/assets/img/product/3.png create mode 100644 src/assets/img/product/4.png create mode 100644 src/assets/img/product/5.png create mode 100644 src/assets/img/product/bg1.png create mode 100644 src/assets/img/product/bg2.png create mode 100644 src/pages/station/product/index.vue diff --git a/public/index.html b/public/index.html index b3173ad..2df6477 100644 --- a/public/index.html +++ b/public/index.html @@ -3,21 +3,21 @@ - + - 智信云 + 职站——为院校打造一站式虚拟仿真实训教学数智云平台 + + \ No newline at end of file diff --git a/src/router/modules/station.js b/src/router/modules/station.js index 826709f..f6b91a1 100644 --- a/src/router/modules/station.js +++ b/src/router/modules/station.js @@ -5,25 +5,31 @@ const meta = {}; const pre = "station-"; export default { - path: "/station", - name: "station", - redirect: { - name: `${pre}list` + path: "/station", + name: "station", + redirect: { + name: `${pre}list` + }, + meta, + component: BasicLayout, + children: [ + { + name: `${pre}list`, + path: `list`, + component: () => import("@/pages/station/list"), + meta: { title: "实验台" } }, - meta, - component: BasicLayout, - children: [ - { - name: `${pre}list`, - path: `list`, - component: () => import("@/pages/station/list"), - meta: { title: "实验台" } - }, - { - name: `${pre}preview`, - path: `preview`, - component: () => import("@/pages/station/preview"), - meta: { title: "课程预览" } - } - ] + { + name: `${pre}preview`, + path: `preview`, + component: () => import("@/pages/station/preview"), + meta: { title: "课程预览" } + }, + { + name: `${pre}product`, + path: `product`, + component: () => import("@/pages/station/product"), + meta: { title: "产品详情" } + } + ] }; \ No newline at end of file