odoo里固定form表单上的header

固定form表头header实现方式
 

 

 

修改全局样式:加个position: fixed;  即可

.o_form_view .o_form_statusbar {
    position: fixed;
    width:100%;
    z-index:999;
    margin-top: -12px
}

.o_form_view .o_form_sheet_bg > .o_form_sheet {
     padding-top: 55px !important;
}

 

posted @ 2022-05-22 23:54  何双新  阅读(476)  评论(1编辑  收藏  举报