初始上传

This commit is contained in:
2026-04-04 17:27:12 +08:00
parent 4d80d28eb4
commit b7e11774ee
11191 changed files with 1588469 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
<template>
<view class="container">
<!-- #ifdef APP-PLUS -->
<layout-aside></layout-aside>
<!-- #endif -->
<view class="body-container common-scrollbar">
<!-- <layout-top></layout-top> -->
<view class="layout-content">
<slot></slot>
</view>
</view>
</view>
</template>
<script>
import layoutTop from './components/layout-top.vue';
import layoutAside from './components/layout-aside.vue';
export default {
name: 'layoutDefault',
components: {
layoutTop,
layoutAside
},
data() {
return {};
},
created() {}
};
</script>
<style lang="scss">
.container {
width: 100vw;
height: calc(100vh - #{$statusbar-height});
background: $body-bg;
/* #ifdef H5 */
min-width: 1200px;
/* #endif */
}
.body-container {
padding-top: 0;
padding-left: 0.88rem;
width: 100%;
height: 100%;
box-sizing: border-box;
overflow-y: scroll;
.layout-content{
height:100%;
overflow: hidden;
box-sizing: border-box;
padding: 0.20rem;
}
}
</style>