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