Browse Source

【更新】更新整体后台管理容器,让该前端增加前台界面不受高度限制

pull/162/MERGE
xiaonuobase 1 year ago
parent
commit
6ca6c69469
  1. 2
      snowy-admin-web/index.html
  2. 2
      snowy-admin-web/src/layout/index.vue
  3. 2
      snowy-admin-web/src/style/index.less
  4. 2
      snowy-admin-web/src/views/auth/findPwd/index.vue
  5. 2
      snowy-admin-web/src/views/auth/login/login.less

2
snowy-admin-web/index.html

@ -28,7 +28,7 @@
<strong>We're sorry but Snowy2.0 doesn't work properly without JavaScript
enabled. Please enable it to continue.</strong>
</noscript>
<div id="app" class="aminui">
<div id="app">
<div class="app-loading">
<div class="app-loading__logo">
<img src="/img/logo.png"/>

2
snowy-admin-web/src/layout/index.vue

@ -1,4 +1,5 @@
<template>
<div class="aminui">
<!-- 经典布局 -->
<template v-if="layout === 'classical'">
<a-layout>
@ -180,6 +181,7 @@
<div class="main-maximize-exit" @click="exitMaximize">
<fullscreen-exit-outlined style="color: #fff" />
</div>
</div>
</template>
<script>

2
snowy-admin-web/src/style/index.less

@ -35,7 +35,7 @@ a, button, input, textarea {
/* 大布局样式 */
.aminui {
overflow: hidden;
height: 100%;
height: 100vh;
display: flex;
flex-flow: column;
}

2
snowy-admin-web/src/views/auth/findPwd/index.vue

@ -31,7 +31,7 @@
<style lang="less" scoped>
.login_background {
width: 100%;
height: 100%;
min-height: 100vh;
overflow: hidden;
background-size: cover;
background-position: center;

2
snowy-admin-web/src/views/auth/login/login.less

@ -9,7 +9,7 @@
}
.login_background {
width: 100%;
height: 100%;
min-height: 100vh;
overflow: hidden;
background-size: cover;
background-position: center;

Loading…
Cancel
Save