0e1561b2-eedf-4701-a278-6c6837b24464.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. "use strict";
  2. cc._RF.push(module, '0e156Gy7t9HAaJ4bGg3skRk', 'FailPanelMediator');
  3. // Script/view/failPanel/FailPanelMediator.ts
  4. "use strict";
  5. var __extends = (this && this.__extends) || (function () {
  6. var extendStatics = function (d, b) {
  7. extendStatics = Object.setPrototypeOf ||
  8. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  9. function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
  10. return extendStatics(d, b);
  11. };
  12. return function (d, b) {
  13. extendStatics(d, b);
  14. function __() { this.constructor = d; }
  15. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  16. };
  17. })();
  18. Object.defineProperty(exports, "__esModule", { value: true });
  19. var BaseMediator_1 = require("../../../lightMVC/core/base/BaseMediator");
  20. var FailPanelMediator = /** @class */ (function (_super) {
  21. __extends(FailPanelMediator, _super);
  22. function FailPanelMediator() {
  23. return _super !== null && _super.apply(this, arguments) || this;
  24. }
  25. FailPanelMediator.prototype.init = function (data) {
  26. console.log(data + "跳转。。。");
  27. this.view.drawView();
  28. };
  29. FailPanelMediator.prototype.viewDidAppear = function () {
  30. };
  31. FailPanelMediator.prototype.destroy = function () {
  32. };
  33. return FailPanelMediator;
  34. }(BaseMediator_1.default));
  35. exports.default = FailPanelMediator;
  36. cc._RF.pop();