增加主机信息功能
This commit is contained in:
45
web-vue/packages/biz/views/biz/myDocker/index.vue
Normal file
45
web-vue/packages/biz/views/biz/myDocker/index.vue
Normal file
@@ -0,0 +1,45 @@
|
||||
<template>
|
||||
<PageWrapper :contentFullHeight="true" :dense="true" title="false" contentClass="docker-page-wrapper">
|
||||
<div class="docker-page">
|
||||
</div>
|
||||
</PageWrapper>
|
||||
</template>
|
||||
<script lang="ts" setup name="Docker">
|
||||
import { PageWrapper } from '@jeesite/core/components/Page';
|
||||
|
||||
</script>
|
||||
<style lang="less">
|
||||
@dark-bg: #141414;
|
||||
@desktop-page-gap: 12px;
|
||||
@desktop-page-padding: 0;
|
||||
@desktop-card-radius: 10px;
|
||||
@desktop-card-border: 1px solid rgb(226 232 240);
|
||||
@desktop-card-shadow: 0 1px 3px rgb(15 23 42 / 0.06);
|
||||
@desktop-dark-border: rgb(51 65 85);
|
||||
|
||||
.docker-page-wrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
min-height: 0;
|
||||
padding: 0 !important;
|
||||
width: calc(100% + 10px);
|
||||
margin-left: -5px !important;
|
||||
margin-right: -5px !important;
|
||||
margin-bottom: 0 !important;
|
||||
overflow: hidden !important;
|
||||
background: transparent !important;
|
||||
}
|
||||
|
||||
.docker-page {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-height: 0;
|
||||
padding: 0 !important;
|
||||
padding-bottom: 2px !important;
|
||||
overflow: hidden;
|
||||
background: transparent;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user