modalRef: BsModalRef;
config = {
animated: true,
class: 'forgot-modal'
};
openModal(template: TemplateRef<any>) {
this.modalRef = this.modalService.show(template, this.config);
}
closeModal() {
this.modalRef.hide();
this.modalRef = null;
}
上面的代码打开了我的模态。但是身体有一个需要移除的卷轴。我以某种方式发现modal-open
打开模式时该类未附加到正文标记。