【数据统计】表单过大时显示不全修改

hc_zhufu
Zhufu 2024-05-22 08:34:07 +08:00
parent 947e8ad260
commit 698050eb3d
1 changed files with 12 additions and 10 deletions

View File

@ -6,10 +6,10 @@
</div>
<div class="form-content">
<BasicForm ref="myDataBaseFormRef" @register="registerForm" v-if="formModalVisible" />
<div class="footer-button" v-if="!isDetail">
<a-button style="margin-right: 20px;" @click="closeModal"></a-button>
<a-button type="primary" @click="ModalSureClick"></a-button>
</div>
</div>
<div class="footer-button" v-if="!isDetail">
<a-button style="margin-right: 20px;" @click="closeModal"></a-button>
<a-button type="primary" @click="ModalSureClick"></a-button>
</div>
</div>
</template>
@ -218,15 +218,17 @@ async function handleCreateFlow(processId) {
}
}
.form-content{
padding: 25px;
height: calc(100% - 50px);
padding: 25px 25px 0px 25px;
height: calc(100% - 97px);
display: flex;
flex-direction: column;
justify-content: space-between;
.footer-button{
display: flex;
justify-content: flex-end;
}
overflow: auto;
margin-bottom: 15px;
}
.footer-button{
display: flex;
justify-content: flex-end;
}
}
</style>