namespace RedHotRoast { public class AlubumCtrl : BaseCtrl { public static AlubumCtrl Instance { get; private set; } private AlubumModel model; #region 生命周期 protected override void OnInit() { Instance = this; //model = ModuleManager.Instance..GetModel(ModelConst.AlubumModel) as AlubumModel; } protected override void OnDispose() { Instance = null; } #endregion } }