数通智联化工云平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
457 B

1 year ago
<!--
@ 作者: 秦东
@ 时间: 2024-07-13 09:34:24
@ 备注:
-->
<script lang='ts' setup>
const props = defineProps({
bodyHight:Number,
});
//画板高度
const drawingBoardHeight = computed(()=>{
return props.bodyHight + 50
})
</script>
<template>
<div class="monthCalendarBox" :style="'height:calc(100vh - '+ drawingBoardHeight +'px)'"></div>
</template>
<style lang='scss' scoped>
.monthCalendarBox{
width: 100%;
margin-top: 10px;
}
</style>