import { _decorator, Node } from 'cc'; import { BaseView } from '../../../framework/layer/BaseView'; const { ccclass, property } = _decorator; @ccclass('MailDetail') export class MailDetail extends BaseView { onLoad() { super.onLoad(); } onDestroy() { super.onDestroy(); } onOpen() { } onClose() { } onShow() { } onHide() { } private onTouchButton(event: Event, customStr) { } }