@@ -0,0 +1,43 @@
+.app-container {
+ width: 100vw;
+ height: 100vh;
+ margin: 0;
+ padding: 0;
+ overflow: hidden;
+ background: #f5f5f5;
+ position: relative;
+
+ .flex-row {
+ display: flex;
+ flex-direction: row;
+ }
+ .flex-column {
+ flex-direction: column;
+ .flex-center {
+ justify-content: center;
+ align-items: center;
+ .bottom-block-btn {
+ position: absolute;
+ bottom: 50px;
+ left: 50%;
+ transform: translateX(-50%);
+ height: 80px;
+ width: 575px;
+ border-radius: 40px;
+ font-size: 36px;
+ .van-nav-bar {
+ .van-nav-bar__title {
+ font-size: 38px;
+}
@@ -1,5 +1,6 @@
@import './vant/index.less';
@import './transition/index.less';
+@import './gloab.less';
// 进度条颜色
#nprogress .bar {
background: rgb(33, 166, 117) !important;
@@ -32,6 +32,24 @@ export const entranceRoutes: AppRouteModule[] = [
title: '下载',
ignoreAuth: true
}
+ },
+ {
+ path: '/cognitiveTasks/main',
+ name: 'cognitiveTasksMain',
+ component: () => import('/@/views/cognitiveTasks/main/index.vue'),
+ meta: {
+ title: '认知任务 - 介绍',
+ ignoreAuth: true
+ path: '/cognitiveTasks/spatialOrientationAbility',
+ name: 'cognitiveTasksSpatialOrientationAbility',
+ component: () => import('/@/views/cognitiveTasks/spatialOrientationAbility/index.vue'),
+ title: '认知任务 - 空间定位',
]