27 lines
508 B
Vue
27 lines
508 B
Vue
<template>
|
|
<el-card shadow="always" class="content_body_details">
|
|
<detailsCom></detailsCom>
|
|
</el-card>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import detailsCom from "views/com/details.vue"
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.content_body_details{
|
|
margin-top: 12px;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-height:calc(100vh - 172px);
|
|
overflow-y:auto;
|
|
.el-card__body{
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
</style>
|