feat(projects): 布局调整

This commit is contained in:
Soybean
2021-08-26 18:49:20 +08:00
parent ea5917d225
commit eda87f041d
14 changed files with 40 additions and 119 deletions

View File

@ -1,8 +0,0 @@
<template>
<div>
<router-view />
</div>
</template>
<script lang="ts" setup></script>
<style scoped></style>

View File

@ -1,8 +0,0 @@
<template>
<div>
<router-view />
</div>
</template>
<script lang="ts" setup></script>
<style scoped></style>

View File

@ -0,0 +1,15 @@
<template>
<n-layout has-sider>
<n-layout-sider />
<n-layout>
<n-layout-header></n-layout-header>
<n-layout-content>
<router-view />
</n-layout-content>
<n-layout-footer></n-layout-footer>
</n-layout>
</n-layout>
</template>
<script lang="ts" setup></script>
<style scoped></style>

View File

@ -1,3 +1,3 @@
import BasicLayout from './BasicLayout.vue';
import BasicLayout from './BasicLayout/index.vue';
export { BasicLayout };

View File

@ -1,5 +1,4 @@
import setupSmoothScroll from './smooth-scroll';
import setupNaive from './naive';
import NProgress from './nprogress';
export { setupSmoothScroll, setupNaive, NProgress };
export { setupSmoothScroll, setupNaive };

View File

@ -1,9 +1,30 @@
import { create, NSpace, NButton, NDatePicker, NInput } from 'naive-ui';
import {
create,
NLayout,
NLayoutSider,
NLayoutHeader,
NLayoutContent,
NLayoutFooter,
NSpace,
NButton,
NDatePicker,
NInput
} from 'naive-ui';
import type { App } from 'vue';
export default function setupNaive(app: App) {
const naive = create({
components: [NSpace, NButton, NDatePicker, NInput]
components: [
NLayout,
NLayoutSider,
NLayoutHeader,
NLayoutContent,
NLayoutFooter,
NSpace,
NButton,
NDatePicker,
NInput
]
});
app.use(naive);
}

View File

@ -1,10 +0,0 @@
import NProgress from 'nprogress'; // 顶部进度条
import '../styles/css/nprogress.css';
NProgress.configure({
easing: 'ease',
speed: 500,
trickleSpeed: 200,
showSpinner: false
});
export default NProgress;

View File

@ -1,60 +0,0 @@
/* Make clicks pass-through */
#nprogress {
pointer-events: none;
}
#nprogress .bar {
position: fixed;
z-index: 1031;
top: 0;
left: 0;
width: 100%;
height: 2px;
background: #29d;
}
/* Fancy blur effect */
#nprogress .peg {
display: block;
position: absolute;
right: 0px;
width: 100px;
height: 100%;
box-shadow: 0 0 10px #29d, 0 0 5px #29d;
opacity: 1;
transform: rotate(3deg) translate(0px, -4px);
}
/* Remove these to get rid of the spinner */
#nprogress .spinner {
position: fixed;
top: 15px;
right: 15px;
display: block;
z-index: 1031;
}
#nprogress .spinner-icon {
width: 18px;
height: 18px;
box-sizing: border-box;
border: solid 2px transparent;
border-top-color: #29d;
border-left-color: #29d;
border-radius: 50%;
animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
position: relative;
overflow: hidden;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
position: absolute;
}
@keyframes nprogress-spinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}