| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- "use strict";
- cc._RF.push(module, 'bdc28kKbixG/p3jT/6oVjm7', 'InsufficientPanel');
- // Script/view/insufficientPanel/InsufficientPanel.ts
- "use strict";
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- var BaseView_1 = require("../../../lightMVC/core/base/BaseView");
- var App_1 = require("../../Manager/App");
- var SDK_1 = require("../../sdk/SDK");
- var SoundManager_1 = require("../../Manager/SoundManager");
- var _a = cc._decorator, ccclass = _a.ccclass, property = _a.property;
- var InsufficientPanel = /** @class */ (function (_super) {
- __extends(InsufficientPanel, _super);
- function InsufficientPanel() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- InsufficientPanel.prototype.drawView = function () {
- var _this = this;
- // 返回
- var closeBtn = this.ui.getNode("close");
- closeBtn.on(cc.Node.EventType.TOUCH_END, function () {
- _this.closeView();
- }, this);
- var confirmBtn = this.ui.getNode("confirm");
- confirmBtn.on(cc.Node.EventType.TOUCH_END, function () {
- SoundManager_1.SoundManager.getInstance().VideoStartStop();
- SDK_1.default.Instance.showRewardVideo(function () {
- App_1.App.DataManager.UpdateTili(App_1.App.DataManager.VideoAddTili);
- SoundManager_1.SoundManager.getInstance().VideoEndOpen();
- _this.closeView();
- }, function () {
- SoundManager_1.SoundManager.getInstance().VideoEndOpen();
- }, function () {
- SoundManager_1.SoundManager.getInstance().VideoEndOpen();
- });
- }, this);
- };
- InsufficientPanel.path = function () {
- return "/prefabs/InsufficientPanel";
- };
- InsufficientPanel = __decorate([
- ccclass
- ], InsufficientPanel);
- return InsufficientPanel;
- }(BaseView_1.BaseView));
- exports.default = InsufficientPanel;
- cc._RF.pop();
|