4c8eea7c-ced4-43a4-98a7-6770a464918f.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. "use strict";
  2. cc._RF.push(module, '4c8eep8ztRDpJinZ3CkZJGP', 'SmallPanelMediator');
  3. // Script/view/smallPanel/SmallPanelMediator.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 SmallPanelMediator = /** @class */ (function (_super) {
  21. __extends(SmallPanelMediator, _super);
  22. function SmallPanelMediator() {
  23. return _super !== null && _super.apply(this, arguments) || this;
  24. }
  25. SmallPanelMediator.prototype.init = function (data) {
  26. console.log(data + "跳转。。。");
  27. this.view.drawView();
  28. };
  29. SmallPanelMediator.prototype.viewDidAppear = function () {
  30. };
  31. SmallPanelMediator.prototype.destroy = function () {
  32. };
  33. return SmallPanelMediator;
  34. }(BaseMediator_1.default));
  35. exports.default = SmallPanelMediator;
  36. cc._RF.pop();