19626
2023-10-23 1727a4f4d02e429475608e60f142a63bc24127bc
force-app/main/default/lwc/lexEnquiryNoBidding/lexEnquiryNoBidding.js
@@ -4,9 +4,9 @@
 * @Author: chen jing wu
 * @Date: 2023-04-21 14:11:57
 * @LastEditors: chen jing wu
 * @LastEditTime: 2023-04-21 14:15:55
 * @LastEditTime: 2023-10-19 14:03:43
 */
import { api, wire,LightningElement } from 'lwc';
import { api, wire,LightningElement, track } from 'lwc';
import { CurrentPageReference } from "lightning/navigation";
import { CloseActionScreenEvent } from 'lightning/actions';
@@ -27,8 +27,13 @@
          }
        }
    }
    handleChildEvent(){
      console.log('close');
      this.dispatchEvent(new CloseActionScreenEvent());
    }
    @track flag = false;
    connectedCallback(){
        window.open ('/apex/EnquiryNoBiddingPage?oid=' + this.recordId, 'height=350, width=600, top=200, left=350,location=no');
        this.dispatchEvent(new CloseActionScreenEvent());
        this.flag = true;
        // this.dispatchEvent(new CloseActionScreenEvent());
    }
}