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

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