管理端web端提交

This commit is contained in:
aixianling
2023-01-03 11:45:38 +08:00
parent d1f2a42f1c
commit bf37c7ef10
23 changed files with 926 additions and 0 deletions

36
web/src/App.vue Normal file
View File

@@ -0,0 +1,36 @@
<template>
<router-view/>
</template>
<style lang="scss">
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
height: 100vh;
width: 100vw;
--el-color-primary: #384388;
--background-color: #F2F6FF;
}
body {
margin: 0;
}
.fill {
flex: 1;
min-width: 0;
min-height: 0;
}
.color-a2v1c5 {
color: #A2B1C5;
}
.mar-r30 {
margin-right: 30px;
}
.pad-w10 {
padding: 0 10px;
}
</style>