单击模式中的关闭时,如何修复抽屉未打开

问题描述

  openModalRepair(data?: any) {

    const MODAL_REF = new BehaviorSubject(null);
    const DRAWER_REF = new BehaviorSubject(null);
    this.modalRef = this.modal.create({
      nzTitle: `For Repair`,nzMaskClosable: true,nzClosable: false,nzContent: FormComponent,nzComponentParams: {
        data: data,drawerRef: DRAWER_REF,modalRef: MODAL_REF
      },nzFooter: null
    });

    this.drawerRef.close();
    DRAWER_REF.next(this.drawerRef);
    MODAL_REF.next(this.modalRef);
  }

form.component.ts

  @input() data?: any;
  @input() drawerRef: BehaviorSubject<any>;
  @input() modalRef: BehaviorSubject<any>;



  close() {
    const modal = this.modalRef.getValue();
    const drawer = this.drawerRef.getValue();
    drawer.open();
    modal.destroy();
  }

openModalRepair(data?: any) {
    
        const MODAL_REF = new BehaviorSubject(null);
        this.modalRef = this.modal.create({
          nzTitle: `For Repair`,nzComponentParams: {
            data: data,drawerRef: this.drawerRef,modalRef: MODAL_REF
          },nzFooter: null
        });
    
        this.drawerRef.close();
        MODAL_REF.next(this.modalRef);
      }

form.component.ts

   @input() data?: any;
      @input() drawerRef: any;
      @input() modalRef: BehaviorSubject<any>;
    
    
    
      close() {
        const modal = this.modalRef.getValue();
        this.drawerRef.open();
        modal.destroy();
      }
    

我要在这里做的是打开模态时,然后单击关闭/取消按钮,它应该隐藏,然后显示抽屉。但是问题是单击关闭/取消按钮时,它没有显示/显示

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)