/****************************************************************** * Copyright(C) 2019 - 2020 Nx Studio * * 主界面 --- 侧边功能栏 * * ******************************************************************/ const MailController = require("mail.mod"); cc.Class({ extends: cc.Component, properties: { }, // 初始化 start: function () { // 默认收起 this.onTouchShrink(); }, // 点击展开 onTouchExpand: function () { nx.gui.setActive(this, "on", false); nx.gui.setActive(this, "off", true); nx.gui.setActive(this, "list", true); }, // 点击收起 onTouchShrink: function () { nx.gui.setActive(this, "on", true); nx.gui.setActive(this, "off", false); nx.gui.setActive(this, "list", false); }, // 点击录像 onTouchRecords: function () { // MailController.getInstance().openMailUI( true ); }, // 点击邮件 onTouchMail: function () { MailController.getInstance().openMailUI(true); }, });