Commit 1b269d69 authored by wjf's avatar wjf

l

parent c7d582ff
...@@ -18392,6 +18392,7 @@ var __extends = (this && this.__extends) || (function () { ...@@ -18392,6 +18392,7 @@ var __extends = (this && this.__extends) || (function () {
Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "__esModule", { value: true });
var Panel_1 = __webpack_require__(/*! ../../module/views/Panel */ "./module/views/Panel.ts"); var Panel_1 = __webpack_require__(/*! ../../module/views/Panel */ "./module/views/Panel.ts");
var TEXT_ALIGN = FYGE.TEXT_ALIGN; var TEXT_ALIGN = FYGE.TEXT_ALIGN;
var ctrls_1 = __webpack_require__(/*! ../../module/ctrls */ "./module/ctrls/index.ts");
var RES_1 = __webpack_require__(/*! ../../module/RES */ "./module/RES.ts"); var RES_1 = __webpack_require__(/*! ../../module/RES */ "./module/RES.ts");
var WxPrizePanel = (function (_super) { var WxPrizePanel = (function (_super) {
__extends(WxPrizePanel, _super); __extends(WxPrizePanel, _super);
...@@ -18447,6 +18448,10 @@ var WxPrizePanel = (function (_super) { ...@@ -18447,6 +18448,10 @@ var WxPrizePanel = (function (_super) {
return str; return str;
})()); })());
}; };
WxPrizePanel.prototype.hidePanel = function () {
_super.prototype.hidePanel.call(this);
ctrls_1.showToast("领取成功");
};
return WxPrizePanel; return WxPrizePanel;
}(Panel_1.Panel)); }(Panel_1.Panel));
exports.WxPrizePanel = WxPrizePanel; exports.WxPrizePanel = WxPrizePanel;
This diff is collapsed.
...@@ -69,4 +69,9 @@ export class WxPrizePanel extends Panel { ...@@ -69,4 +69,9 @@ export class WxPrizePanel extends Panel {
); );
} }
hidePanel() {
super.hidePanel();
showToast("领取成功")
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment