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

问题描述

  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 (将#修改为@)

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...