【数据统计】表单过大时显示不全修改
parent
947e8ad260
commit
698050eb3d
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue