zhangchunxu
2023-08-02 87d855494227ac4727467be864c4756820a51dc3
force-app/main/default/lwc/lexSplitApplyFlowLWC/lexSplitApplyFlowLWC.js
@@ -15,12 +15,13 @@
   connectedCallback(){
      if (this.recordId && JSON.stringify(this.rentalApplyIds)) {
          window.open("/apex/RentalApplySplit?objId="+this.recordId+"&raesIds="+this.rentalApplyIds, 'RentalApplySplit', 'width=600,height=200');
         this.closeAction();
      }else{
         this.msg = '请选择借出备品一览记录';
         this.IsLoading = false;
      }
   }
    closeAction(event) {
    closeAction() {
        //返回当前的备品申请
      window.open("/"+this.recordId,'_self');
    }