明树Git Lab

Commit c1d66a41 authored by yangyajing's avatar yangyajing

项目管理调整,增加building页面

parent 25bbac44
Pipeline #104486 passed with stage
in 14 seconds
......@@ -17,8 +17,8 @@ const routes = [
children: [
{
path: '/homePage',
name: '数据大屏',
title: 'dataSummary',
name: 'dataSummary',
title: '数据大屏',
component: () => import('@/views/homePage/index.vue'),
meta: { menuName: '数据大屏', icon: 'platform' }
},
......@@ -125,6 +125,12 @@ const routes = [
}
]
},
{
path: "/building",
name: "building",
title: "建设中",
component: () => import("@/views/homePage/building.vue")
}
]
}
]
......
<template>
<div class="building-container">
<img src="@/assets/images/building.png" alt="">
<div class="title">努力开发中……</div>
</div>
</template>
<script setup></script>
<style lang="less">
.building-container{
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
img{
max-width: 300px;
}
.title{
font-size: 18px;
color: #999;
}
}
</style>
\ No newline at end of file
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment