123
chenjingwu
2024-04-11 d29f75b84fccd06917fb8e2c2ee70e9d76f868cd
force-app/main/default/lwc/lexEditCancelReport/lexEditCancelReport.js
@@ -1,3 +1,11 @@
/*
 * @Description:
 * @version:
 * @Author: chen jing wu
 * @Date: 2023-09-11 10:34:37
 * @LastEditors: chen jing wu
 * @LastEditTime: 2023-10-18 11:43:59
 */
import { LightningElement, track, wire, api } from 'lwc';
import {CurrentPageReference} from 'lightning/navigation';
import { CloseActionScreenEvent } from 'lightning/actions';
@@ -42,7 +50,12 @@
            attributes: {
                recordId: this.recordId,
                actionName: 'edit'
            },
            state: {
                nooverride: '1'
            }
        });
        this.IsLoading = false;
        this.dispatchEvent(new CloseActionScreenEvent());
    }
}